当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript setTime()方法
The setTime() method is used to calculate a date and time by adding or subtracting a specified number of milliseconds to/from midnight January 1, 1970.
setTime() 方法可在170年1月1号这个时间的基础上加上或是减去指定的毫秒数。
dateObject.setTime(millisec) |
Parameter 参数 | Description 描述 |
---|---|
millisec | Required. A numeric value representing the milliseconds since midnight January 1, 1970. Can be a negative number 必选。代表相距1970年1月1号的毫秒数 |
Note: This method is always used in conjunction with a Date object.
注意:这个方法得结合Date对象使用
In this example we will add 77771564221 milliseconds to 1970/01/01 and display the new date and time:
在这个举例中我们将算出1970年1月1号向后的77771564221毫秒为什么时候:
<script type="text/javascript"> var d = new Date() </script> |
The output of the code above will be:
输出结果为:
Mon Jun 19 05:12:44 UTC+0200 1972 |
In this example we will subtract 77771564221 milliseconds from 1970/01/01 and display the new date and time:
这个举例中我们将算出1970年1月1号向前77771564221毫秒是什么时候:
<script type="text/javascript"> var d = new Date() </script> |
The output of the code above will be:
输出结果为:
Sat Jul 15 22:47:15 UTC+0200 1967 |
setTime()
Use setTime() to add milliseconds to 1970/01/01 and display the new date and time.
使用setTime()来给1970年1月1号加上相应的毫秒可以得出新的日期和时间