我有非常簡單的代碼。當有人點擊超鏈接時,我想顯示對話框。對話框不工作
<html lang="en">
<head>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
</head>
<body>
<form>
<a id='theLink' href="#">Common Questions</a>
<div id="dialogform1" title="Common Questions" style ="display:none">
<p> this is question 1 </p>
</div>
</form>
<script type="text/javascript">
$(document).ready(function()
{
$("#theLink").click(function(e) {
$('#dialogform1').dialog("open");
});
});
</script>
</body>
</html>
但是,這不會打開先前聲明的div內容的對話框。我不知道我在這裏做錯了什麼?我花了好幾個小時才發現它爲什麼會發生,但似乎無法找到它。它需要另一隻眼睛看問題。
謝謝您花時間回答問題。
你需要包括de jQuery用戶界面庫也? – bloodyKnuckles
,我可以問爲什麼downvote這個問題? – Vishal