$(document).ready(function() {
$('#reservation').daterangepicker({
format : 'YYYY-MM-DD',
separator : '~',
locale : {
applyLabel : '确定',
cancelLabel : '清空',
fromLabel : '起始时间',
toLabel : '结束时间',
customRangeLabel : '自定义',
daysOfWeek : [ '日', '一', '二', '三', '四', '五', '六' ],
monthNames : [ '一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月' ],
firstDay : 1
}
});
//点击清空触发
$('#reservation').on('cancel.daterangepicker', function(ev, picker) {
$('#reservation').val('');
});
});
$('#reservation').daterangepicker({
format : 'YYYY-MM-DD',
separator : '~',
locale : {
applyLabel : '确定',
cancelLabel : '清空',
fromLabel : '起始时间',
toLabel : '结束时间',
customRangeLabel : '自定义',
daysOfWeek : [ '日', '一', '二', '三', '四', '五', '六' ],
monthNames : [ '一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月' ],
firstDay : 1
}
});
//点击清空触发
$('#reservation').on('cancel.daterangepicker', function(ev, picker) {
$('#reservation').val('');
});
});