日期选择器没有弹出

时间:2018-01-03 11:37:07

标签: jquery datepicker

我把它放在头上:

$(function() {
  $("#datepicker").datepicker({
    dateFormat: "DD, dd MM yy",
    minDate: "+2",
    maxDate: "+1Y"
  });
});
<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>
</script>


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

datepicker没有出现。出现textbox,当我点击时,弹出任何内容。我做错了吗?

它适用于jsfiddle,但不在我的.php页面中。

2 个答案:

答案 0 :(得分:-2)

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

不需要标签。

答案 1 :(得分:-3)

&#13;
&#13;
<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>
jQuery(function() {
  jQuery("#datepicker").datepicker({
    dateFormat: "DD, dd MM yy",
    minDate: "+2",
    maxDate: "+1Y"
  });
});
</script>


<p>Date: <input type="text" id="datepicker"></p>
&#13;
&#13;
&#13;