如何修复'Uncaught TypeError:$(...)。datepicker不是函数'

时间:2019-08-06 12:02:43

标签: javascript jquery datepicker jquery-ui-datepicker uidatepicker

我想创建日期选择器,但它不起作用

$("#datepicker").datepicker();
  

未捕获的TypeError:$(...)。datepicker不是函数

我希望使用日历,但显示错误

1 个答案:

答案 0 :(得分:-2)

您的脚本中是否同时包含jQueryui和jQueryui?没有源代码或您在做什么的更多信息,问题就有点模糊了。

这直接取自jQueryUI网站:https://jqueryui.com/datepicker/

另外,请确保您的代码中没有两次包含jQuery,如这篇文章所建议的:jQuery UI " $("#datepicker").datepicker is not a function"

可能的副本:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Datepicker - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker" ).datepicker();
  } );
  </script>
</head>
<body>
 
<p>Date: <input type="text" id="datepicker"></p>
 
 
</body>
</html>

希望这会有所帮助!