-1
我有兩個datepicker在我看來一個「發件人」和其他的「到」。 我希望當「從」選擇日期少於「到」應禁用。 還請指導我如何格式化日期選擇器在剃刀引擎mvc3 datepicker
<div>
From:
<input type="text" id="txtFromDate" />
To:
<input type="text" id="txtToDate" />
</div>
$(function() {
$("#txtFromDate").datepicker({
numberOfMonths: 1,
highlightWeek: true,
onSelect: function(selected) {
$("#txtToDate").datepicker("option", "mindate", selected)
}
});
$("#txtToDate").datepicker({
numberOfMonths: 1,
onSelect: function(selected) {
$("#txtFromDate").datepicker("option", "maxDate", selected)
}
});
});
你能發表您的觀點至少代碼? – Jorge
$(函數(){ $( 「#txtFromDate」)日期選擇器({ NUMBEROFMONTHS:1, highlightWeek:真, ONSELECT:功能(選擇)的{ $( 「#txtToDate」)日期選擇器(」。選項」, 「MINDATE」,選擇的) } }); $( 「#txtToDate」)日期選擇器({ NUMBEROFMONTHS:1, ONSELECT:功能(選擇)的{ $( 「#txtFromDate」)日期選擇器。 (「option」,「maxDate」,selected) } }); }); – NewToBirtReporting