当前位置: 首页 > 文档资料 > ES6 入门教程 >

getUTCMilliseconds()

优质
小牛编辑
126浏览
2023-12-01

JavaScript日期getUTCMilliseconds()方法根据通用时间返回指定日期的毫秒数。 getUTCMilliseconds返回的值是0到999之间的整数。

语法 (Syntax)

Date.getUTCMilliseconds ()   

返回值 (Return Value)

根据通用时间返回指定日期的毫秒数。

例子 (Example)

var dt = new Date( "December 25, 1995 23:15:20" ); 
console.log("getUTCMilliseconds() : " + dt.getUTCMilliseconds())   

输出 (Output)

getUTCMilliseconds() : 0