欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

js操作时间

程序员文章站 2022-06-12 14:46:53
...
js获取当前时间,指定时间的时间戳
function transdate(endTime){
var date=new Date();
date.setFullYear(endTime.substring(0,4));
date.setMonth(endTime.substring(5,7)-1);
date.setDate(endTime.substring(8,10));
date.setHours(endTime.substring(11,13));
date.setMinutes(endTime.substring(14,16));
date.setSeconds(endTime.substring(17,19));
return Date.parse(date)/1000;
}
alert(transdate('2015-11-30 17:45:00'));// 指定时间的时间戳

var date =new Date();
var currenttime = Date.parse(date)/1000;
alert(currenttime );// 当前时间的时间戳

AD:真正免费,域名+虚机+企业邮箱=0元