如何显示当前系统的UTC格式。例如,输出将显示如下,
GMT GMT + 1.00 像那样
答案 0 :(得分:0)
您需要考虑使用JavaScript Date
对象。
var theDate = new Date(); //outputs current date/time
var theDate2 = new Date("01/02/2010"); //outputs the passed date and time (time will default to 12:00 or 00:00. I can't remember)
来自W3学校
var d = new Date();
var d = new Date(milliseconds);
var d = new Date(dateString);
var d = new Date(year, month, day, hours, minutes, seconds, milliseconds);
http://www.w3schools.com/jsref/jsref_obj_date.asp
这不是jQuery,但我不明白你想要完成什么,所以我只能提供基本的指导。
看起来您也可以从.getUTCDate()
对象的Date
属性中受益:http://www.w3schools.com/jsref/jsref_getutcdate.asp