我正在使用phonegap在我的iPhone应用程序中使用notification.confirm。
$("#buttonId").click(function(e){
buyDialogBox();
});
function buyDialogBox(){
navigator.notification.confirm(
getIndRestrictionText(), // message
onConfirm, // callback to invoke with index of button pressed
'confirm alert Box', // title
'ok,Cancle' // buttonLabels
);
}
function onConfirm( button ){
if( button == 1 ){
alert("Ok button is clicked");
}else{
alert("cancel button is clicked");
}
}
单击按钮时,按下确定或取消按钮,然后立即确认警告框第二次显示非常短的时间。
我想知道为什么第二次显示确认警告框。
请给我解决方案。