码迷,mamicode.com
首页 > Windows程序 > 详细

easyui的window插件再次封装

时间:2014-11-11 15:40:37      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   sp   div   

easyui的window插件再次封装

代码:

bubuko.com,布布扣
/**
* 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="‘ + 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];
    }
}
View Code

 

easyui的window插件再次封装

标签:style   blog   http   io   color   ar   os   sp   div   

原文地址:http://www.cnblogs.com/s0611163/p/4089346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!