【EasyClick】【JavaScript】获取时间戳,时间转时间戳,获取10位时间戳
*** @description getTimeStamp 获取时间戳
* @param {String?} time 时间/可为空 2020-06-20 16:16:34或 2020/06/20 16:16:34
* @return {number} 10位时间戳
*/
getTimeStamp = function (time) {
if (time) {
return ~~(String((new Date(time.replace(/-/g, '/'))).getTime()).slice(0, -3))
} else {
return ~~(String((new Date()).getTime()).slice(0, -3))
}
}
页:
[1]