读书人

扩充easyui.window

发布时间: 2012-11-23 22:54:33 作者: rapoo

扩展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(); } }] }); }


读书人网 >Web前端

热点推荐