2014-04-03 82 views

回答

0

你試過using Cordova's navigator.prompt

例如,在共同\ main.js:

function wlCommonInit() { 
    navigator.notification.prompt(
     'Please enter your name', // message 
     onPrompt,     // callback to invoke 
     'Registration',   // title 
     ['Ok','Exit'],    // buttonLabels 
     'Jane Doe'     // defaultText 
    ); 
} 

function onPrompt() { 
    alert("prompted"); 
} 

我在iOS的測試這一點,但它會在Android的正常工作。

預覽應用程序時,使用一些存根或「常規」JS實現,但對於移動環境,請使用Cordova's。

enter image description here