首页 > 代码库 > EasyUI 第二层弹出框

EasyUI 第二层弹出框

这是孙宇在EasyUI拓展时的代码。

可以根据实际需要自行修改。

 $.modalDialog2.handler 这个handler代表弹出的dialog句柄
 $.modalDialog2.xxx 这个xxx是可以自己定义名称,主要用在弹窗关闭时,刷新某些对象的操作,可以将xxx这个对象预定义好

$.modalDialogTwo = function(options) {
 if ($.modalDialogTwo.handler == undefined) {// 避免重复弹出
var opts = $.extend({
   title : ‘‘,
   width : 840,
   height : 680,
   modal : true,
   onClose : function() {
    $.modalDialogTwo.handler = undefined;
    $(this).dialog(‘destroy‘);
   },
   onOpen : function() {
    // parent.$.messager.progress({
    // title : ‘提示‘,
    // text : ‘数据加载中,请稍后....‘
    // }); 
   }
  }, options); 
  opts.modal = true;// 强制此dialog为模式化,无视传递过来的modal参数
  return $.modalDialogTwo.handler = $(‘<div/>‘).dialog(opts);
 }
};

EasyUI 第二层弹出框