alert()在Windows Phone上无法使用PhoneGap

时间:2012-02-16 12:28:33

标签: windows-phone-7 jquery-mobile cordova

我正在使用jQuery mobile(1.0.1。)在Windows Phone 7.5上尝试使用PhoneGap 1.4。 基本导航正在工作,不幸的是我似乎无法获得警报。既没有警报(“字符串);也没有PhoneGap的navigator.notification.alert(message,alertCallback,[title],[buttonName]);给我任何回复.WapMGap测试消息显示正常。这是我尝试调用的方式它:

function init()
{
  document.addEventListener("deviceready",onDeviceReady,false);
}

function onDeviceReady()
{
  document.getElementById("welcomeMsg").innerHTML += "PhoneGap is ready!";
  alert('test');
  navigator.notification.alert(
      'You are the winner!',  // message
      alertDismissed,         // callback            
      'Game Over',            // title            
      'Done'                  // buttonName        
  );
}

1 个答案:

答案 0 :(得分:5)

Google Groups discussion

简而言之,Windows Phone 7 IE9网络浏览器不支持警报,而是必须使用PhoneGap Notification API,如下所示:

navigator.notification.alert("Message", callBackMethod, "Title", "Button Text");

有关详细信息,请参阅PhoneGap Notification API