對cst格式的時間字串進行分段擷取,重新拼接為gmt格式
//thu aug 18 20:38:54 cst 2016,時間格式轉換
//輸出格式:yyyy-mm-dd hh:mm:ss
thu aug 18 2016 20:38:54 gmt+0800
function gettasktime(strdate)
var datestr=strdate.trim().split(" ");
var strgmt = datestr[0]+" "+datestr[1]+" "+datestr[2]+" "+datestr[5]+" "+datestr[3]+" gmt+0800";
var date = new date(date.parse(strgmt));
var y = date.getfullyear();
var m = date.getmonth() + 1;
m = m < 10 ? ('0' + m) : m;
var d = date.getdate();
d = d < 10 ? ('0' + d) : d;
var h = date.gethours();
var minute = date.getminutes();
minute = minute < 10 ? ('0' + minute) : minute;
var second = date.getseconds();
second = second < 10 ? ('0' + second) : second;
return y+"-"+m+"-"+d+" "+h+":"+minute+":"+second;
};
顯示結果:
原始時間格式:thu aug 18 20:38:54 cst 2016
gmt時間格式:thu aug 18 2016 20:38:54 gmt+0800 (中國標準時間)
轉換時間格式:2016-08-18 20:38:54
UTC時間 CST時間和GMT時間
1 utc時間是l零時區的時間。時間協調時間 cst時間是四大時區的時間,標準時間 分別是 central standard time australia ut 9 30 澳大利亞cst 加9個半小時 china standard time ut 8 00 中國cst 加8個小時 cuba stan...
CST 時間格式轉換成普通的時間格式
string value thu jul 22 00 58 32 cst 2010 分割出年 月 日 分 秒 時 星期 string date value.split new char stringsplitoptions.removeemptyentries 生成本地日期字串格式,gmt代表根據本...
JS 時間戳轉日期格式
1 日期轉換為時間戳,如果日期格式為時間戳,將其轉為日期型別,否則輸出傳入的資料 如果時間格式為時間戳,將其轉為日期 function timestamptodate timestamp var date new date timestamp y date.getfullyear m date.ge...