getMilliseconds 方法
更新:2007 年 11 月
利用本地時間傳回 Date 物件中的毫秒值。
function getMilliseconds() : Number
備註
若要取得 Coordinated Universal Time (UTC) 的毫秒數,請使用 getUTCMilliseconds 方法。
傳回的毫秒值可以介於 0 到 999 之間。
範例
以下範例說明如何使用 getMilliseconds 方法。
function TimeDemo(){
var d, s = "The current local time is: ";
var c = ":";
d = new Date();
s += d.getHours() + c;
s += d.getMinutes() + c;
s += d.getSeconds() + c;
s += d.getMilliseconds();
return(s);
}