admin管理员组文章数量:1344571
Can you please show me how to enable range in jquery ui datepicker, I want to determine range in the format: from 2012-12-10 to 2012-12-20 etc (yy-mm-dd, already specified). All other dates should not be available.
Appreciate the help I can get, cheers!
Can you please show me how to enable range in jquery ui datepicker, I want to determine range in the format: from 2012-12-10 to 2012-12-20 etc (yy-mm-dd, already specified). All other dates should not be available.
Appreciate the help I can get, cheers!
Share Improve this question asked Nov 23, 2012 at 14:12 L.SL.S 1792 gold badges2 silver badges9 bronze badges 1- 1 Have you looked at the [documentation](api.jqueryui./datepicker/), there is even a demo on how to do that. – Jack Commented Nov 23, 2012 at 14:14
4 Answers
Reset to default 6try this:
function setInterval(){
$(function() {
$( "#startDate" ).datepicker({
defaultDate: "+1w",
onSelect: function( selectedDate ) {
$( "#endDate" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#endDate" ).datepicker({
defaultDate: "+1w",
onSelect: function( selectedDate ) {
$( "#startDate" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
}
where
startDate
endDate
are the two input fields of datepicker
Try something like:
jQuery("#date").datepicker({
beforeShow: function() {
return {
dateFormat: 'yy-mm-dd',
minDate: '2012-12-10',
maxDate: '2012-12-20',
}
}
});
Use maxDate
and minDate
options when creating.
Link
Code:
$( "#datepicker" ).datepicker({ minDate: value1, maxDate: value2 });
The previous answer is correct, example:
$(function() {
$( "#datepicker" ).datepicker({ minDate: new Date(2012, 12, 10), maxDate: new Date(2012, 12, 20) });
});
I just wanted to add the following links which you might find useful:
http://jqueryui./datepicker/#min-max
http://api.jqueryui./datepicker/
本文标签: javascriptjquery ui datepicker range between two datesStack Overflow
版权声明:本文标题:javascript - jquery ui datepicker range between two dates - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743796842a2540586.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论