>php教程 >php手册 >js操作时间

js操作时间

WBOY
WBOY원래의
2016-06-07 11:36:21956검색

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元

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:一个博客다음 기사:TP整合支付宝银联支付