我的贷款表格:
如果收银员:
如何更改我的代码,以便收银员可以在" 2017/5"中找到日期?
答案 0 :(得分:0)
以下是您问题的解决方案:
答案 1 :(得分:0)
这是我的解决方案,有一个事件处理器来设置第二个日期 HTML:
<input type="text" id="start" /><br/>
<input type="text" id="stop" />
的javascript / jquery的:
$(document).ready(function() {
$("#start").datepicker({
onSelect: function () {
var d = $(this).datepicker("getDate");
d.setMonth(d.getMonth() + 5);
$("#stop").datepicker("setDate", d);
}
});
// set start to today
$("#start").datepicker( "setDate", Date.now());
// this initializes the second one to today + 5 months
$("#stop").datepicker();
var datePlus5 = ($("#start").datepicker("getDate"));
datePlus5.setMonth(datePlus5.getMonth() + 5);
$("#stop").datepicker("setDate", datePlus5);
});