弹出一个窗口或者是panal,如何在其中包含另外一个网页?url是 list.do,这个Action跳转到一个JSP
在当前页直接跳出一个类似window.open()的窗体?
[code="js"]Ext.onReady(function() {
var win = new Ext.Window({
width : 500,
height : 450,
autoLoad : {
url : 'list.do',
script : true
}
// html : ''//不推荐使用,很多人都喜欢这样用,早在2.0的时候官方就不推荐这样了
});
win.show();
});[/code]