私のjQuery Mobile Appでは、カスタムアラートを使用するために通知プラグインを使用しましたが、問題はすべてのアラートが同時に表示されることです。この問題を解決するにはどうすればよいですか?
私を助けてください ....
これは私のコードです
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()
{
}