我正在使用Cordorva对话框插件。请您能解释一下这段代码有什么问题吗:在手机间隙,苹果iphone和android上预览但在Google Play商店上发布时,它可以正常工作。我不确定我使用的是deviceready事件监听器。
function alrt(){
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady(){
navigator.notification.alert(
'Sorry, your record was not found', // message
adismissed, // callback
'Password Reset', // title
'Ok' // buttonName
);
}
}
// xxxxxxxxxxxxxxxxxxxxxxxxxxx
// xxxxxxxxxxxxxxxxxxxxxxxxxxx
function adismissed() {
console.log();
}