bootstrap-datetimepicker時間段區間選擇的問題
後面的時間不能大於前面的時間
$("#startDate").datetimepicker({
format: "yyyy-mm-dd hh:ii",
autoclose: true,
todayBtn: true,
pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left"),
minuteStep: 10
}).on('change',function(ev){
var startDate = $('#startDate').val();
$("#returnDate").datetimepicker('setStartDate',startDate);
$("#startDate").datetimepicker('hide');
});
$("#returnDate").datetimepicker({
format: "yyyy-mm-dd hh:ii",
autoclose: true,
todayBtn: true,
pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left"),
minuteStep: 10
}).on('change',function(ev){
var returnDate = $("#returnDate").val();
$("#startDate").datetimepicker('setReturnDate',returnDate);
$("#returnDate").datetimepicker('hide');
});
主要關注點在於繫結的change方法裡面的程式碼