0

在我的 jQuery Mobile 应用程序中,我使用通知插件来使用自定义警报,问题是所有警报同时出现一个在另一个之后,我该如何防止呢?我应该怎么做才能解决这个问题?

请帮我 ....

这是我的代码

 if( $.trim($('#Name').attr('value') ).length== 0  )
    {    
      navigator.notification.alert(' Insert your Name',alertDismissed,'Missed Value',  'OK');


    }
   if( $.trim($('#PhoneNum').attr('value') ).length== 0  )
    {    
      navigator.notification.alert(' Insert your Phone Number',alertDismissed,'Missed Value',  'OK');

    }
   if( $.trim($('#Address').attr('value') ).length== 0  )
    {    
      navigator.notification.alert(' Insert your Address',alertDismissed,'Missed Value',  'OK');


    }


   function  alertDismissed()
  {



   }
4

1 回答 1

0

将所有警报消息收集到一个数组中并对其进行迭代,在前一个警报窗口的关闭事件上开始下一次调用。

于 2013-10-22T13:03:05.970 回答