返回 Date 对象中用本地时间表示的毫秒值。
dateObj.getMilliseconds()
必选项 dateObj 参数为 Date 对象。
要获取用全球标准时间 (UTC) 表示的毫秒值,请使用 getUTCMilliseconds 方法。
所返回的毫秒值处于 0-999 之间。
下面这个例子说明了 getMilliseconds 方法的用法:
function TimeDemo(){ var d, s = "当前本地时间为: "; var c = ":"; d = new Date(); s += d.getHours() + c; s += d.getMinutes() + c; s += d.getSeconds() + c; s += d.getMilliseconds(); return(s); }
Date 对象方法 | getUTCMilliseconds 方法 | setMilliseconds 方法 | setUTCMilliseconds 方法
应用于:Date 对象