Is it possible to disable future date from today?
是否有可能从今天开始禁用未来日期?
Let say today is 23/10/2010, so 24/10/2010 onwards are disabled.
我们今天说的是2010年10月23日,因此24/10/2010以后禁用。
Sorry I am very new in jQuery and JavaScript.
对不起,我是jQuery和JavaScript的新手。
9 个解决方案
#1
103
Yes, indeed. The datepicker has the maxdate property that you can set when you initialize it.
确实是的。 datepicker具有maxdate属性,您可以在初始化时设置该属性。
Here's the codez
这是codez
$("#datepicker").datepicker({ maxDate: new Date, minDate: new Date(2007, 6, 12) });
#2
35
$(function() { $("#datepicker").datepicker({ maxDate: '0'}); });
#3
3
Code for Future Date only with disable today's date.
未来日期代码仅禁用今天的日期。
var d = new Date();
$("#delivdate").datepicker({
showOn: "button",
buttonImage: base_url+"images/cal.png",
minDate:new Date(d.setDate(d.getDate() + 1)),
buttonImageOnly: true
});
$('.ui-datepicker-trigger').attr('title','');
#4
3
Date for the future 1 year can be done by
未来1年的日期可以通过
$('.date').datepicker({dateFormat: 'yy-mm-dd', minDate:(0), maxDate:(365)});
you can change the date format too by the parameter dateFormat
您也可以通过参数dateFormat更改日期格式
#5
1
Yes, datepicker supports max date property.
是的,datepicker支持最大日期属性。
$("#datepickeraddcustomer").datepicker({
dateFormat: "yy-mm-dd",
maxDate: new Date()
});
#6
1
you can use the following.
你可以使用以下。
$("#selector").datepicker({
maxDate: 0
});
#7
0
http://stefangabos.ro/jquery/zebra-datepicker
http://stefangabos.ro/jquery/zebra-datepicker
use zebra date pickers:
使用斑马日期采摘器:
$('#select_month1').Zebra_DatePicker({
direction: false,
format: 'Y-m-d',
pair: $('#select_month2')
});
$('#select_month2').Zebra_DatePicker({
direction: 1, format: 'Y-m-d',
});
#8
0
Try This:
尝试这个:
$('#datepicker').datepicker({
endDate: new Date()
});
It will disable the future date.
它将禁用未来日期。
#9
-2
$('#thedate,#dateid').datepicker({
changeMonth:true,
changeYear:true,
yearRange:"-100:+0",
dateFormat:"dd/mm/yy" ,
maxDate: '0',
});
});
#1
103
Yes, indeed. The datepicker has the maxdate property that you can set when you initialize it.
确实是的。 datepicker具有maxdate属性,您可以在初始化时设置该属性。
Here's the codez
这是codez
$("#datepicker").datepicker({ maxDate: new Date, minDate: new Date(2007, 6, 12) });
#2
35
$(function() { $("#datepicker").datepicker({ maxDate: '0'}); });
#3
3
Code for Future Date only with disable today's date.
未来日期代码仅禁用今天的日期。
var d = new Date();
$("#delivdate").datepicker({
showOn: "button",
buttonImage: base_url+"images/cal.png",
minDate:new Date(d.setDate(d.getDate() + 1)),
buttonImageOnly: true
});
$('.ui-datepicker-trigger').attr('title','');
#4
3
Date for the future 1 year can be done by
未来1年的日期可以通过
$('.date').datepicker({dateFormat: 'yy-mm-dd', minDate:(0), maxDate:(365)});
you can change the date format too by the parameter dateFormat
您也可以通过参数dateFormat更改日期格式
#5
1
Yes, datepicker supports max date property.
是的,datepicker支持最大日期属性。
$("#datepickeraddcustomer").datepicker({
dateFormat: "yy-mm-dd",
maxDate: new Date()
});
#6
1
you can use the following.
你可以使用以下。
$("#selector").datepicker({
maxDate: 0
});
#7
0
http://stefangabos.ro/jquery/zebra-datepicker
http://stefangabos.ro/jquery/zebra-datepicker
use zebra date pickers:
使用斑马日期采摘器:
$('#select_month1').Zebra_DatePicker({
direction: false,
format: 'Y-m-d',
pair: $('#select_month2')
});
$('#select_month2').Zebra_DatePicker({
direction: 1, format: 'Y-m-d',
});
#8
0
Try This:
尝试这个:
$('#datepicker').datepicker({
endDate: new Date()
});
It will disable the future date.
它将禁用未来日期。
#9
-2
$('#thedate,#dateid').datepicker({
changeMonth:true,
changeYear:true,
yearRange:"-100:+0",
dateFormat:"dd/mm/yy" ,
maxDate: '0',
});
});