首页 > 代码库 > easyui的window插件再次封装
easyui的window插件再次封装
easyui的window插件再次封装
代码:
/*** easyui的window插件再次封装* 2014年11月10日*/SimpoWin = { showWin: function showWindow(title, url, width, height) { if (!top.SimpoWinId) top.SimpoWinId = 0; var divId = "simpoWin" + top.SimpoWinId; top.$("body").append(‘<div id="‘ + divId + ‘"></div>‘); top.$(‘#‘ + divId).window({ modal: true, title: title, width: width, height: height, collapsible: false, minimizable: false, maximizable: false, content: function () { return ‘<iframe frameborder="0" src="http://www.mamicode.com/‘ + url + ‘" style="width: ‘ + (width - 14).toString() + ‘px; height: ‘ + (height - 39).toString() + ‘px; margin: 0;">‘; }, onClose: function () { top.SimpoWinId--; top.SimpoParentWin.pop(); } }).window(‘open‘); top.SimpoWinId++; if (!top.SimpoParentWin) top.SimpoParentWin = new Array(); top.SimpoParentWin.push(window); }, closeWin: function () { var divId = "simpoWin" + (top.SimpoWinId - 1).toString(); top.$(‘#‘ + divId).window(‘close‘); }, GetWinParent: function () { return top.SimpoParentWin[top.SimpoParentWin.length - 1]; }}
easyui的window插件再次封装
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。