0
當用戶訪問我的主頁時,我試圖顯示模態對話框/彈出。居中jQuery模態對話框彈出
我能夠顯示對話框,但它不出現在屏幕的中心。
我進口這些文件,如果這是問題:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script language="JavaScript" type="text/javascript">
$(function() {
$("#dialog-modal").dialog({
width: 'auto',
// position: 'center',
center: true,
modal: true,
autoOption: true,
resizable: false
});
});
</script>
<div id="dialog-modal" title="Offer" style="text-align:center"><img alt="" src="Pack.jpg"/> </div>
我的小提琴:http://jsfiddle.net/szEpb/
感謝
感謝。以上哪裏去?在$(「#dialog-modal」)對話框中{{ –
}嘗試在$(「#dialog-modal」)對話框({})之外寫入它。 – Outlooker