当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript getTime()方法
The getTime() method returns the number of milliseconds since midnight of January 1, 1970.
getTime()方法所返回了从1970年1月1号以来所积累的毫秒总数
dateObject.getTime() |
Note: This method is always used in conjunction with a Date object.
注意:这个方法得结合Date对象使用
In this example we will get how many milliseconds since 1970/01/01 and print it:
在这个举例中我们得到了从1970年1月1号以来所积累的毫秒总数并输出它:
<script type="text/javascript"> var d = new Date() </script> |
The output of the code above will be:
输出的结果为:
In the following example we will calculate the number of years since 1970/01/01:
在这个举例中我们得到了从1970年1月1号以来所用掉的年数总数并输出它:
<script type="text/javascript"> var minutes = 1000*60 </script> |
The output of the code above will be:
输出结果为:
getTime()
Use getTime() to calculate the years since 1970.
使用getTime() 来计算从1970年到现在过去了多少年