1、描述
JavaScript date getUTCMilliseconds()
方法根据UTC时间返回指定日期的毫秒数。getUTCMilliseconds() 返回的值为0 ~ 999之间的整数。
2、语法
它的语法如下 :
date.getUTCMilliseconds()
3、返回值
根据通用时间返回指定日期中的毫秒数。
4、使用示例
<html>
<head>
<title>JavaScript getUTCMilliseconds Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date();
document.write("getUTCMilliseconds() = " + dt.getUTCMilliseconds() );
</script>
</body>
</html>
5、输出
getUTCMilliseconds() = 198