背景:我使用 sencha 2.1 开发了一个 SenchaTouch 应用程序。现在我正在尝试使用cordova 2.2.0 js 显示一个简单的警报消息。
我的基本疑问是“我可以在 google chrome 上使用 'navigator.notification.alert' 显示警报框,还是必须在模拟器上运行它才能看到警报框?”
我已按照以下步骤操作。
在我的工作区中包含了cordova 2.2.0 js,并从 index.html 中引用了它。我可以在 Google Chrome 的网络选项卡中看到加载的文件。
下面是我的代码,它只是在单击按钮时显示本机警报框。
alertDismissed : function() { console.log('This function is called'); } onLoginNoteCommand: function () { console.log('onLoginNoteCommand'); navigator.notification.alert( 'Please Select a Car', // message this.alertDismissed, // callback ' ' // title ); }
错误发生
我收到“ Uncaught TypeError: Cannot call method 'alert' of undefined
”错误。
任何想法我在哪里做错了?
谢谢