Cordova将文本框添加到警报中

时间:2014-08-25 10:10:59

标签: javascript android jquery ios cordova

朋友们,我需要在phonegap / cordova应用程序的警报视图中添加文本框。

enter image description here

我使用以下链接教程在警报视图中创建两个按钮。 http://docs.phonegap.com/en/3.0.0/cordova_notification_notification.md.html但我无法将文本框添加到其中。实际上,当用户忘记密码时,我必须向服务器发送电子邮件ID。还有另一种方法可以做那件事...... PLZ分享......

1 个答案:

答案 0 :(得分:3)

检查此代码

function onPrompt(results) {
alert("You selected button number " + results.buttonIndex + " and entered " + results.input1);
}

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