当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript parse()方法
The parse() method takes a date string and returns the number of milliseconds since midnight of January 1, 1970.
parse() 可获得一段日期字符串,是自1970年1月1号凌晨以来所用掉的毫秒数。
Date.parse(datestring) |
Parameter 参数 | Description 描述 |
---|---|
datestring | Required. A string representing a date 必选项。代表日期的字符串 |
In this example we will get how many milliseconds there are from 1970/01/01 to 2005/07/08:
在这个举例中我们将得到从1970/01/01 到2005/07/08 所用掉的毫秒数:
<script type="text/javascript"> var d = Date.parse("Jul 8, 2005") </script> |
The output of the code above will be:
输出结果为:
1120773600000 |
Now we will convert the output from the example above into years:
现在我们将上面输出的转换成年份:
<script type="text/javascript"> var minutes = 1000 * 60 </script> |
The output of the code above will be:
现在结果变为这样:
It's been: 35.53949771689498 years from 1970/01/01 to 2005/07/08! |
parse()
Use parse() to print the milliseconds from 1970/01/01 to a specified date.
使用parse()来输出1970/01/01到指定日期一共花去的毫秒数