我正在使用jQuery,並將內容加載到div中,然後將其顯示爲對話框。但是,它不是集中在對話框中。jQuery UI對話框不居中
有沒有人有解決方案?
代碼:
function Core_Load_Register()
{
$("body").append("<div id='Register_Popup'></div>");
$("#Register_Popup").load("index.php?section=FrontPage&page=Register&nogui=true");
$("#Register_Popup").dialog({
modal: true,
height: "auto",
width: "auto",
buttons:
{
"Register New Account":
function()
{
},
"Cancel":
function()
{
$(this).dialog("close");
}
}
});
}
實例截圖:
jQuery Dialog not Centered Example http://oi54.tinypic.com/nlznl4.jpg
嘗試這樣做:http://stackoverflow.com/questions/1467102/dialog-box-not-positions-center-screen –
試過但沒有爲我工作。 –
我不確定您的對話框代碼在DOM中的位置,但我會嘗試將它作爲「