我正在使用jQuery TOOLS UI library中的dateinput()
,我设置了最短和最长日期。
但是,我希望在设置它们后获取这些值。怎么能实现这个目标?
答案 0 :(得分:0)
你可以试试这个:
$(":date").dateinput({
format: 'dddd dd, mmmm yyyy', // the format displayed for the user
selectors: true, // whether month/year dropdowns are shown
min: -100, // min selectable day (100 days backwards)
max: 100, // max selectable day (100 days onwards)
offset: [10, 20], // tweak the position of the calendar
speed: 'fast', // calendar reveal speed
firstDay: 1, // which day starts a week. 0 = sunday, 1 = monday etc..
change: function (a) {
console.log($(this)[0].getConf().min);//min value
console.log($(this)[0].getConf().max);//max value
}
});
HTML:
<input type="date" name="date1" value="Today" />
<input type="date" name="date2" value="10 days from now" min="2010-03-01" max="2012-01-01" class="one" />
<input type="date" name="date3" value="15" min="-25" max="25" data-value="15" />
演示:http://jsfiddle.net/GCu2D/159/
除了change
功能外,它还有onShow
和onHide
,以防万一你想在晚些时候或在节目中使用min max。