1
我使用jQuery UI顯示2個月的內聯日期選擇器,我想啓用範圍選擇從一天到另一天與中間突出顯示,還從日期和到日期「捕捉」日期與一些回調,所以我可以將它們插入一些輸入。datepicker範圍選擇與突出顯示和選擇回調
這是我當前的代碼:
HTML:
<div id="journey-calendar"></div>
腳本:
$('#journey-calendar').datepicker({
numberOfMonths: [2, 1],
showOtherMonths: true,
altField: '.begin-trip-date',
altFormat: 'dd M yy', defaultDate: null
});
我希望得到任何幫助或演示!
This [question](http://stackoverflow.com/q/8600224/430112)可能會給你想法 – Gowri