我尝试制作一个日期选择器,您只能选择剩下8天的日期。如果我们有09 / 05-2015的日期你不能选择(8,7,6,5,4,3,2),但你可以选择01 / 05-2015并下去。我该怎么做?
$(document).ready(function() {
$(".date-picker").datepicker({
todayHighlight: true,
});
$(".date-picker").datepicker().datepicker("setDate", new Date()); //sets the todays date in the input field
$(".date-picker").on("change", function () {
var id = $(this).attr("id");
var val = $("label[for='" + id + "']").text();
$("#msg").text(val + " changed");
});
}); // end of document ready
答案 0 :(得分:0)
我找到了更好的解决方案:
我使用setDate来设置我想要的日期
$(".date-picker").datepicker("setDate", "-20d");
并使用了endDate,因此人们只能在当前日期(今天的日期)20天后选择日期。
endDate: '-20d'
谢谢,你的时间!