我有以下的jQuery彈出對話框的初始化,動態內容:中心的jQuery彈出對話框與汽車的寬度和高度自動
jQuery("#popUp").live("click", function (e) {
e.preventDefault();
jQuery("<div></div>")
.addClass("dialog")
.attr("id", "popUpDialog")
.appendTo("body")
.dialog({
title: jQuery(this).attr("data-dialog-title"),
close: function() { jQuery(this).remove(); },
modal: true,
hide: { effect: "none", duration: 150 },
show: { effect: "none", duration: 150 },
width: 'auto',
height: 'auto',
position: {
my: 'center',
at: 'center',
of: jQuery(window)
}
}).load(this.href);
jQuery(".close").live("click", function (e) {
e.preventDefault();
jQuery(this).closest(".dialog").dialog("close");
});
});
});
我很抱歉這個最簡單的問題,但我不能把彈出窗口放在整個頁面的中心。問題是:
position: {
my: 'center',
at: 'center',
of: jQuery(window)}
位置:{ 我:「中心」, 在:「中心」的 :jQuery的(窗口) }刪除它通過默認顯示對話框在中心 –