');
_this.maskDiv.addClass('MaskDiv');
_this.maskDiv.css({
'filter': "Alpha(opacity=" ( options.opacity - "0" ) * 100 ");",
'不透明度': options.opacity,
'顯示': '阻止'
});
$(doc.body).append(_this.maskDiv);
if (_this.contentDiv) {
$(doc.body).append(_this.contentDiv);
_this.contentDiv.show();
_this.contentDiv.draggable({
遏止:「文件」,
遊標:'移動式',
把手:「.Dialog_Head」
});
$(_this.maskDiv).on("mousemove", function() {
$("body").preventScroll();
});
$(_this.maskDiv).on("mouseout", function() {
$("body").liveScroll();
});
if ($(".cke").length == 0 && $(".Dialog_Body").length > 0) {
$(".Dialog_Body").preventOuterScroll();
}
}
};
this.remove = function () {
if (_this.contentDiv) {
_this.contentDiv.remove();
}
if (_this.maskDiv) {
_this.maskDiv.remove();
}
$("body").liveScroll();
};
this.formatPercentNumber = function (值, 整體) {
if (isNaN(value) && typeof value === "string") {
if (value.indexOf("%") !== -1) {
value = (value.replace("%", "") / 100) * 整體;
} else if (value.indexOf("px") !== -1) {
value = value.replace("px", "");
}
}
return Math.ceil(值);
};
this.position = function (dialog,dialogBody,minusHeight){
對話方塊=對話方塊|| $(".ShowDialogDiv");
if (對話方塊[0]) {
var clientWidth = document.documentElement.clientWidth;
var clientHeight = document.documentElement.clientHeight;
var width = _this.formatPercentNumber(dialog.data("position").width, clientWidth) ||對話框.width();
var height = _this.formatPercentNumber(dialog.data("position").height, clientHeight) ||對話框.height();
寬度=寬度
高度=高度
$(對話方塊).css({
“寬度”:寬度“px”,
“高度”:高度“px”,
"上": Math.ceil((clientHeight - 高度) / 2) "px",
"左": Math.ceil((clientWidth - 寬度) / 2) "px"
});
對話主體 = 對話主體 || $(".Dialog_Body");
if (dialogBody[0]) {
減高度 = 減少高度 || ($(".Dialog_Head").outerHeight() $(".Dialog_Foot").outerHeight()))
;
;
;
;
;
;
;
;
;
;
;
vardialogBodyHeight = 高度 - minusHeight;
dialogBody.height(dialogBodyHeight);
}
}
}
}
var createDialogTemplate = function (optionArg, contentHtml, saveBtnClickHandler) {
var 選項 = {
“行動”:””,
“標題”:“”,
“寬度”:“50%”,
「高度」:「50%」
};
if (optionArg) {
for (optionArg 中的 var prop) {
options[prop] = optionArg[prop];
}
}
var newDialog = $("
");
var DialogHead = $("
").appendTo(newDialog);
$("
").html(options.Action " " options.Title).appendTo(DialogHead);
var DialogClose = $("").appendTo(DialogHead);
var DialogBody = $("").html(contentHtml).appendTo(newDialog);
var DialogFoot = $("