标签: javascript
我想将特定日期(例如2017年10月31日)转换为时间戳。
我应该输入什么以及如何将其转换为时间戳?
答案 0 :(得分:0)
只需将getTime与new Date(date_to_parse)一起使用
getTime
new Date(date_to_parse)
var example="31 October, 2017"; alert(new Date(example).getTime());