我需要知道在当前时间增加2小时。我正在使用自适应日期时间选择器jQuery插件。我想如果有人选择当前时间显示的今天的日期,加上2个小时。现在它显示选择今天的日期之后的当前时间。
日期选择器jQuery:
<script type="text/javascript"> jQuery.noConflict(); (function($){
$(function(){
var dateToday = new Date();
var dates = $("#pickupdate").datepicker({
defaultDate: "+1w",
changeMonth: false,
numberOfMonths: 1,
minDate: dateToday,
onSelect: function(selectedDate) {
var option = this.id == "from" ? "minDate" : "maxDate",
instance = $(this).data("datepicker"),
date = $.datepicker.parseDate(instance.settings.dateFormat || $.datepicker._defaults.dateFormat, selectedDate, instance.settings);
dates.not(this).datepicker("option", option, date); }
});
});
})(jQuery);
</script>
时间选择器jQuery。
<script type="text/javascript">
jQuery.noConflict();
(function($) {
$(function(){
$("#dtBox").DateTimePicker({
mode: 'time',
timeFormat: "hh:mm AA",
isPopup: false,
addEventHandlers: function(){
var oDTP = this;
oDTP.settings.minTime = oDTP.getDateTimeStringInFormat("Time", "hh:mm AA", new Date());
oDTP.settings.maxTime = "06:00 PM";
}
});
});
})(jQuery);
</script>