0

我正在使用 Button X 类型,其中我有 href 配置来打开另一个链接。但是使用 href 改变我的按钮样式..虽然由于使用 href 配置样式已经改变..这是我的 X 类型..ExtJS4 ......

                      {
                            xtype:'button',
                            text:'Start',
                            style:'margin-left:150px;',
                            cls:'userAccountButtonCls',                             
                            href:'http://localhost/zipyap/',                                                             
                       }
4

1 回答 1

1

利用

Handler:function(){
window.location.assign("http://localhost/zipyap/");
}
instead of href

希望它可以帮助

于 2013-01-16T06:41:33.353 回答