Date.setMilliseconds()設定日期中的毫秒

Javascript的Date.setMilliseconds()方法:

setMilliseconds()方法可以用來設定物日期物件中的當地時間的毫秒數。其參數是一個0~999的整數,若超出這範圍,則setMilliseconds()方法會自動計算超出範圍的值,以得到正確時間,譬如說setMilliseconds(1000),已經超出範圍,則原本日期物件的秒數會加1,而毫秒數會變成0。若是setMilliseconds(1008),則原本日期物件的秒數會加1,而毫秒數會變成8。

setMilliseconds()方法有一個傳回值,這傳回值代表著從1970年1月1日0時0分到該日期物件的UTC時間所經過的毫秒數。

Date.setMilliseconds()的語法:

DateObj.setMilliseconds(ms)

ms:毫秒數,範圍為0~999。

傳回值:從1970年1月1日0時0分到該日期物件的UTC時間所經過的毫秒數。

Date.setMilliseconds()的範例:

<script type="text/javascript">
var mydate = new Date("Jan 01, 1970 00:00:00");
document.writeln(mydate.toLocaleString());
document.writeln("<br/>");
var x=mydate.setMilliseconds(1008);
document.writeln("秒數="+mydate.getSeconds());
document.writeln("<br/>");
document.writeln("毫秒數="+mydate.getMilliseconds());
document.writeln("<br/>");
</script>

Date.setMilliseconds()的範例輸出:

1970年1月1日 上午12:00:00 
秒數=1 
毫秒數=8

Date.setMilliseconds()的範例說明:

1.建立當地時間為1970年1月1日 0時0分0秒的日期物件。

2.利用setMilliseconds(1008);修改秒數與毫秒數。

3.輸出秒數為1,毫秒數為8。

關於Date物件的其他屬性與方法,請參考:日期物件 Date

 
 

  按個讚!~支持本站!~

FB推薦載入中  

你可能會有興趣的文章