在我的 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()
{
}