我把它放在头上:
$(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
页面中。
答案 0 :(得分:-2)
<p>Date: <input type="text" id="datepicker"></p>
不需要标签。
答案 1 :(得分:-3)
<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;