目前我的项目页面有一个 jQuery datepicker inline 放置在页面的一个部分。下面的代码用于实现相同的目的。
<link rel="stylesheet" href="~/Scripts/Calendar/jquery-ui-1.10.1.custom.css">
<script src="~/Scripts/Calendar/jquery-1.9.1.js"></script>
<script src="~/Scripts/Calendar/jquery-ui-1.10.1.custom.js"></script>
<script>
$(document).on("change", "#datepicker", function () {
var date = $(this).val();
$( "#dialog" ).dialog();
});
</script>
// The below section is in one of the sections
<div id="datepicker" style="font: 80% 'Trebuchet MS', sans-serif;"></div>
<script>
$("#datepicker").datepicker();
</script>
.
.
.
<div id="dialog-modal" title="Basic modal dialog">
<p>Adding the modal overlay screen.</p>
</div>
现在,当用户单击特定日期时,我必须显示一个带有信息的 jQuery 对话框。
好吧,我试图调用对话框
$(document).on("change", "#datepicker", function () {
var date = $(this).val();
$( "#dialog" ).dialog();
});
但它显示错误,因为 Object 不支持属性或方法对话框。
任何人都可以让我朝着正确的方向前进。
谢谢