日期選擇器未來日期不會禁用。這裏是HTML如何使用jquery在datepicker中禁用將來的日期?
<div class="input-group input-append date" id="dp3" data-date="" data-date-format="mm-dd-yyyy">
<input class="form-control" style="width: 106px; height: 30px;" type="text" id="nodate" value="<?php echo date('m-j-Y');?>" readonly=""/>
<div class="input-group-addon add-on" style="width: 35px; height: 25px;"><i class="icon-calendar"></i></div>
 
<button type="button" class="btn btn-primary" onclick="window.location = '<?php echo base_url().'index.php/attendance/noRecordDate/';?>'+ $('#nodate').val()">Add Attendance</button>
</div>
這裏我的日期選擇器代碼是我的腳本:
<script>
$(function() {
$("#nodate").datepicker({ maxDate: new Date() });
});
</script>
的maxDate:0不工作 –
引號,如下:'{maxDate:'0'}' – hassan
我的意思是我完全使用你的代碼,但它不工作。 –