我一直在尝试在 sencha touch 中编写代码,它有一个按钮,当我点击它时,它应该在新窗口中打开一个网页作为弹出窗口。
Window.open()-我不能使用这个方法,因为它在手机中不能正常工作。虽然我意识到这是打开新浏览器窗口的最简单方法。
document.location.href=url - 此方法在同一
页面中打开 URL,但我希望它在新窗口中作为弹出窗口打开。
当用户单击按钮时,有没有其他方法可以在新窗口中打开页面,下面是我的代码
Ext.application({
name: 'Opening new page',
launch: function() {
Ext.create("Ext.tab.Panel", {
fullscreen: false,
items: [
{
xtype: 'button',
text: 'click to open google',
ui: 'confirm',
handler: function() {
document.location.href=("http://www.google.com/");
}
}
]
});
}
});