以下http://www.asp.net/ajaxlibrary/jquery_ui_mvc_datepicker.ashx 使用 Asp.Net MVC 有人可以帮助我了解为什么我的 datepicker 不工作。单击文本框时没有任何反应。日期选择器应该出现在哪里?
<input type="text" id="simple-date" />
<script type="text/javascript" language="javascript">
// the jQuery ready shortcut
$(function () {
// set up our datepicker
$("#simple-date").datepicker();
});
</script>