我是phonegap的新手。我正在使用IOS的phonegap。我面临的问题是,JS函数window.open('URL')无效。它什么都没有。任何人都可以帮助我实际发生的事情吗?
由于
答案 0 :(得分:0)
要显示确认框,您需要做一些像这样的事情
//process the confirmation dialog result
function onConfirm(button) {
alert('You selected button ' + button);
}
// Show a custom confirmation dialog
//
function showConfirm() {
navigator.notification.confirm(
'You are the winner!', // message
onConfirm, // callback to invoke with index of button pressed
'Game Over', // title
'Restart,Exit' // buttonLabels
);
}
只需点击按钮即可调用showConfirm()......
答案 1 :(得分:0)
试试这个:window.location ='http://www.google.com';
window.location.href ='http://www.google.com';
答案 2 :(得分:-1)
我使用了带有弹出过渡的简单页面,因为jquery对话框也可以作为页面使用,但它会影响你的css,这就是为什么我使用带有弹出过渡的简单页面。并且它附加在当前DOM中,因为我可以访问前一页面表单。在Window.open()的情况下就像openr一样 问题解决了