我想限制从过去日期和当前日期开始的日期选择。必须禁用未来日期。我和#34;从日期"运作良好,但" To Date"不是。我的Javascript代码是否错误?
Js代码
<script>
$(function() {
$("#datepicker").datepicker({maxDate: '+0d'});
})
$(function() {
$("#datepicker1").datepicker1({maxDate: '+0d'});
})</script>
Hmtl代码
<p>From Date: <input type="text" id="datepicker"></p>
<p>To Date: <input type="text" id="datepicker1"></p>
请参阅我在本网站的做法:
答案 0 :(得分:0)
您为第二个功能写了datepicker1
(额外&#39; 1&#39;)而不是datepicker
。
<script>
$(function(){
$("#datepicker").datepicker({maxDate: '+0d'});
$("#datepicker1").datepicker({maxDate: '+0d'});
});
</script>