在Ext-JS4中点击按钮打开html文件

时间:2012-01-31 13:54:28

标签: extjs

我正在运行一个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');

        }   
    }
}

有人可以建议我如何做到这一点吗?

1 个答案:

答案 0 :(得分:0)

您只需使用 window.open

打开新窗口即​​可
window.open('/smartNav/pub/html/index_dev.html');

或在当前窗口中更改位置

window.location.href='/smartNav/pub/html/index_dev.html';