扫码一下
查看教程更方便
getMilliseconds()方法根据本地时间返回当前时间的毫秒数。getMilliseconds()返回的值是 0 到 999 之间的数字。
该方法的语法如下:
Date.getMilliseconds()
无
返回值是 0 ~ 999 之间的一个整数,该数字代表毫秒数。
所有主要浏览器都支持 getMilliseconds() 方法
<html>
<head>
<title>JavaScript getMilliseconds Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( );
document.write("getMilliseconds() : " + dt.getMilliseconds() );
</script>
</body>
</html>
输出结果:
getMilliseconds():791