typeerror inst是未定义的datepicker

时间:2014-09-29 08:31:35

标签: jquery datepicker

我使用datepicker在mvc中显示文本框中的数据但是它给出了错误

typeerror inst是未定义的datepicker

这是代码

<script>
    jQuery(function () {
        jQuery("#dd").datepicker();
    });
</script>

1 个答案:

答案 0 :(得分:0)

你应该包括jquery库和datepicker js。示例代码如下

<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Datepicker - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
  <script>
  $(function() {
    $( "#datepicker" ).datepicker();
  });
  </script>
</head>
<body>

<p>Date: <input type="text" id="datepicker"></p>


</body>
</html>

<强> Reference