现在当我使用jquery日期选择器时,我选择的任何一天的默认时间是格林尼治标准时间00:00:00(美国东部标准时间晚上7点)。有没有办法可以更改默认时间,这样当我选择任何特定日期时,默认时间为格林威治标准时间12:00:00(美国东部时间早上7点)。
由于
答案 0 :(得分:1)
我会尝试一下,这似乎对我有用,因为我猜这个问题只有在得到日期并试图用它做某事时才会明显,因为jQuery datepicker没有显示时间:
//prototype a new function on the date object to add hours
Date.prototype.addHours= function(h){
this.setHours(this.getHours()+h);
return this;
}
//start a datepicker
$("#dateP").datepicker();
//get the date and add 12 hours
var date = $("#dateP").datepicker('getDate').addHours(12);