ボタンがクリックされたときに(いくつかのサンプルコードから)jqueryダイアログを表示しようとしていますが、何らかの理由で表示されません。あなたが助けてくれることを願っています:
<html>
<head>
<script type="text/javascript" src="jquery.js"/>
<script type="text/javascript">
$(document).ready(function() {
var $dialog = $('<div></div>')
.html('This dialog will show every time!')
.dialog({
autoOpen: true,
title: 'Pick A Time Period:'
});
$('#reports').click(function() {
$dialog.dialog('open');
// prevent the default action, e.g., following a link
return false;
});
})
</script>
</head>
<body>
<button id="reports">Hi</button>
</body>
</html>
編集: 申し訳ありませんが、JQueryUI が別のファイルであることに気付きませんでした。今日はJQueryを学んでいるだけなので、すべてが初めてです
JQueryUIファイルに正しいスクリプト行を追加しましたが、何らかの理由でまだ機能していません:
<html>
<head>
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.21.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.21.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var $dialog = $('<div></div>')
.html('This dialog will show every time!')
.dialog({
autoOpen: true,
title: 'Pick A Time Period:'
});
$('#reports').click(function() {
$dialog.dialog('open');
// prevent the default action, e.g., following a link
return false;
});
})
</script>
</head>
<body>
<button id="reports">Hi</button>
</body>
</html>