可以根據(jù)實際需要自行修改。
$.modalDialog2.handler 這個handler代表彈出的dialog句柄
$.modalDialog2.xxx 這個xxx是可以自己定義名稱,主要用在彈窗關(guān)閉時,刷新某些對象的操作,可以將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 : '數(shù)據(jù)加載中,請稍后....'
// });
}
}, options);
opts.modal = true;// 強制此dialog為模式化,無視傳遞過來的modal參數(shù)
return $.modalDialogTwo.handler = $('').dialog(opts);
}
};
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com