我正在运行一个html文件,当我点击提交按钮时,应该打开一个新的html文件。
这是代码: 在loginForm.html中运行的代码
{
xtype : 'button',
text : ' Login ',
formBind : true,
listeners : {
click :function(){
alert();
//these methods are not working
//Ext.getCmp('login_panel').load({url : '/smartNav/pub/html/index_dev.html', scripts : true});
//Ext.getCmp('login_panel').update('index_dev.html');
}
}
}
有人可以建议我如何做到这一点吗?
答案 0 :(得分:0)
您只需使用 window.open
打开新窗口即可window.open('/smartNav/pub/html/index_dev.html');
或在当前窗口中更改位置
window.location.href='/smartNav/pub/html/index_dev.html';