getMilliseconds 方法
2008-01-05 19:03:56 来源:WEB开发网核心提示: 返回 Date 对象中用本地时间表示的毫秒值, dateObj.getMilliseconds()必选项 dateObj 参数为 Date 对象,getMilliseconds 方法,说明要获取用全球标准时间 (UTC)表示的毫秒值,请使用 getUTCMilliseconds 方法
返回 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);
}
Tags:getMilliseconds 方法
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接