0
我有一個jQuery UI對話框,當有表單錯誤時顯示。jQuery UI對話框中動態內容沒有居中正確
繼承人的代碼:
function alert_field_errors (errors)
{
$('<div></div>').dialog({
modal: true,
title: "Error",
open: function() {
$(this).html('The following are required:<br /><br />'+errors+'<br />Please complete these in order to continue.');
},
buttons: {
Ok: function() {
$(this).dialog("close");
}
}
});
}
的errors
變量將包含類似First Name<br />Last Name<br />Email Address<br />
它的偉大工程,除了一個事實,即它不居中。它似乎在加載內容之前定位自己,以便在顯示時,對話框的底部邊距與對話框的頂部邊距相比更靠近窗口的底部。
我試過使用position
選項,但似乎沒有任何工作。
任何幫助將不勝感激。