编程语言
首页 > 编程语言> > javascript 时间字符串转时间戳

javascript 时间字符串转时间戳

作者:互联网

字符串转时间戳

var str='2020-10-20 12:00:00'
new Date(str.replace(/-/g,'/')).getTime()

当前时间戳

new Date().getTime()

标签:00,getTime,javascript,Date,时间,str,字符串,new
来源: https://www.cnblogs.com/sunr/p/16671468.html