Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在引导多日期选择器中设置今天之前预选的 3 个月日期? 如何将 3 个月设置为选项setDates 选项? 此链接仅用于设置多日期选择并仅设置随机预选的 2 个日期,因此没有用
你可以试试这个来获取你的日期(提前 30 天,所以你需要更改 3 个月):
var time = new Date(); time.setDate(time.getDate()+30); alert(time);
并使用它来设置您的新日期:
$('#datepicker2').datepicker('setDate', new Date(2014, 2, 5));