在我的jQuery Mobile App中,我使用了Notification插件来使用自定义警报,问题是所有警报同时出现一个接一个,我该如何防止?我该怎么做才能解决这个问题?
请帮帮我....
这是我的代码
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()
{
}
答案 0 :(得分:0)
收集数组中的所有alertmessages并迭代它,开始对上一个alertwindow的close事件进行下一次调用。