1、當前時間換時間戳
var timestamp = parseint(new date().gettime()/1000); //當前時間戳document.write(timestamp);
2、當前時間換日期字串
var now = newdate();
var yy = now.getfullyear(); //
年var mm = now.getmonth() + 1; //
月var dd = now.getdate(); //
日var hh = now.gethours(); //
時var ii = now.getminutes(); //
分var ss = now.getseconds(); //
秒var clock = yy + "-";
if(mm < 10) clock += "0";
clock += mm + "-";
if(dd < 10) clock += "0";
clock += dd + " ";
if(hh < 10) clock += "0";
clock += hh + ":";
if (ii < 10) clock += 『0『;
clock += ii + ":";
if (ss < 10) clock += 『0『;
clock +=ss;
document.write(clock);
//獲取當前日期
3、日期字串轉時間戳
var date = 『2015-03-05 17:59:00.0『;date = date.substring(0,19);
date = date.replace(/-/g,『/『);
var timestamp = new
date(date).gettime();
document.write(timestamp);
4、時間戳轉日期字串
var timestamp = 『1425553097『;var d = new date(timestamp * 1000); //根據時間戳生成的時間物件
var date = (d.getfullyear()) + "-" +
(d.getmonth() + 1) + "-" +
(d.getdate()) + " " +
(d.gethours()) + ":" +
(d.getminutes()) + ":" +
(d.getseconds());
document.write(date);
js 時間物件
1.date 1.單位 fullyear month date day hours minutes seconds milliseconds 2.每個單位上都有一對兒get set方法 其中 get 專門獲取單位的數值 set 專門設定單位的數值 比如 date.getdate date.getfu...
JS時間物件
獲取年 月 日 時 分 秒 var date new date 時間物件 var gmt date.togmtstring 時間物件轉換成字串,獲取格林威治時間 年 var year date.getfullyear 月 var month date.getmonth 1 外國的月份是從0開始的所以...
js 時間物件 字元物件
var str hello 字面量方式建立 console.log str instanceof string falsevar str new string world console.log str instanceof string true console.log str instanceo...