赞
踩
//获取当前时间
var timestamp_now_s = Date.parse(new Date());
var timestamp = timestamp_now_s / 1000;//除1000得到秒的时间截
var date = new Date(timestamp_now_s); //new Date()
//年
var Y = date.getFullYear();
//月
var M = (date.getMonth() + 1 < 10 ? ‘0’ + (date.getMonth() + 1) : date.getMonth() + 1);
//日
var D = date.getDate() < 10 ? ‘0’ + date.getDate() : date.getDate();
//时
var h = date.getHours();
//分
var m = date.getMinutes();
//秒
var s = date.getSeconds();
var now_time = Y+“-”+M+“-”+D+" “+h+”:“+m+”:"+s
//console.log(“当前时间:” +now_time);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。