标签: javascript jquery datetime timestamp
我有这种格式的时间字符串 - 2015-09-17T16:00:00。如何使用Javascript / jQuery将其转换为这样的时间戳格式 - 1447804800000?
2015-09-17T16:00:00
1447804800000
答案 0 :(得分:2)
使用Date.prototype.getTime()
var x = new Date("2015-09-17T16:00:00").getTime(); alert(x);