Date.setUTCSeconds()設定日期中的UTC秒數

Javascript的Date.setUTCSeconds()方法:

setUTCSeconds()方法用來設定日期物件中的UTC時間的秒數,也可以同時設定毫秒數,秒數參數的範圍是0~59,毫秒數參數的範圍是0~999,若給定的參數超出此範圍,則setUTCSeconds()方法會自動計算以取得正確的時間,譬如說setUTCSeconds(61),61明顯已超出範圍,因此會讓該物件的分鐘數加1,而秒數設定為1。

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

Date.setUTCSeconds()的語法:

DateObj.setUTCSeconds(seconds[, ms])

seconds:秒數,範圍為0~59。

ms:有設定秒數才能設定毫秒,範圍為0~999。

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

如果毫秒數沒設定,則會以getUTCMilliseconds()自動帶入。

Date.setUTCSeconds()的範例:

<script type="text/javascript">
var mydate = new Date();
document.writeln(mydate.toUTCString());
document.writeln("<br/>");
document.writeln("UTC分鐘數:"+mydate.getUTCMinutes()+" UTC秒數:"+mydate.getUTCSeconds());
document.writeln("<br/>");
document.writeln(mydate.setUTCSeconds(61));
document.writeln("<br/>");
document.writeln("UTC分鐘數:"+mydate.getUTCMinutes()+" UTC秒數:"+mydate.getUTCSeconds());
document.writeln("<br/>");
</script>

Date.setUTCSeconds()的範例輸出:

Sun, 14 Apr 2013 12:13:21 GMT 
UTC分鐘數:13 UTC秒數:21 
1365941641596 
UTC分鐘數:14 UTC秒數:1

Date.setUTCSeconds()的範例說明:

1.建立一個日期物件。

2.使用mydate.setUTCSeconds(61)來設定月份,setUTCSeconds()會傳回一個值代表著從1970年1月1日0時0分到該日期物件的UTC時間所經過的毫秒數。

3.setUTCSeconds(61)中的61已超出0~59範圍,不過程式依然會自動為其計算出正確時間,因此該物件的UTC時間的分鐘數會加1,而UTC時間的秒數設為1。

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

 
 

  按個讚!~支持本站!~

FB推薦載入中  

你可能會有興趣的文章