扩展easyui.window
function doEdit(){ vseaf.open({ id: 'edit', title: '编辑初始化值', width: 800, height: 500, content: 'url:edit.jsp', onLoad: function(dialog){ if(this.content && this.content.doInit){//判断弹出窗体iframe中的doInit方法是否存在 this.content.doInit(dialog);//调用并将参数传入,此处当然也可以传入其他内容 } }, toolbar: [{ text: '保存', iconCls: 'icon-save', handler: 'doSave' //调用弹出窗体iframe中的doSave方法 },'-',{ text: '关闭', iconCls: 'icon-cancel', handler: function(dialog){ dialog.close(); } }] }); }