1
我有現在設置爲特定高度的jQuery UI的對話框:自動調整大小jQuery的對話框
$(".event").click(function() {
var id=$(this).attr("data-id");
$("<div></div>")
.addClass("modal-dialog")
.appendTo("body")
.dialog({
close: function() { $(this).remove(); },
modal: true,
height: 600,
width: 700
})
.load("/Home/users?xid=" + id);
});
我想爲我的對話框取決於它的內容調整它的高度。 我試圖更改爲height: auto
,但它根本無法打開。
我也發現此線程: Automatically resize jQuery UI dialog to the width of the content loaded by ajax 但我不明白如何將它應用到我自己的代碼。
這是非常好的,它的工作。只是一件事。使用這段代碼,對話框在頁面上打開的很少。我有辦法決定我想放置在哪裏嗎? 沒有足夠的代表upvote,但非常感謝! – Wranglerino 2014-10-30 07:22:52
http://api.jqueryui.com/dialog/#option-position您可以在設置高度時將位置設置回默認值。 – Scimonster 2014-10-30 07:26:02