date.valueOf()是JavaScript中的內置函數,用於獲取1970年1月1日00:00:00 UTC與給定日期之間的毫秒數。
用法:
dateObj.valueOf()
注意:在以上語法中,DateObj是使用Date()構造函數創建的有效Date對象,其內容用於獲取1970年1月1日UTC和給定日期之間的毫秒數,作為Date()構造函數的內容。
參數:此函數不帶任何參數。它僅與使用Date()構造函數創建的Date對象一起使用。
返回值:它返回1970年1月1日UTC和給定日期之間的毫秒數,作為Date()構造函數的內容。
以下示例程序旨在說明date.valueOf()函數:
<script>
// Here a date has been assigned
// while creating Date object
var dateobj = new Date('October 15, 1996 05:35:32');
// Getting the number of milliseconds between
//1 January 1970 00:00:00
// UTC and the given date as the content of
//the above Date() constructor.
var B = dateobj.valueOf();
// Printing the calculated number of milliseconds.
document.write(B);
</script>
輸出:
845337932000
- 如果在創建日期對象時未傳遞任何參數作為參數,但valueOf()函數仍然返回1970年1月1日UTC與當前日期之間的毫秒數。
<script> // Here nothing has been assigned // while creating Date object var dateobj = new Date(); // Getting the number of milliseconds between //1 January 1970 00:00:00 // UTC and the current date. var B = dateobj.valueOf(); // Printing the calculated number of milliseconds. document.write(B); </script>
輸出:
1524387231290
- 一個月的日期,範圍是1到31。如果將日期視為超出日期範圍的35,它將返回NaN,即不是數字。
<script> // Here a date has been assigned // while creating Date object var dateobj = new Date('October 35, 1996 05:35:32'); // Getting the number of milliseconds between //1 January 1970 00:00:00 // UTC and the given date. var B = dateobj.valueOf(); // Printing the calculated number of milliseconds. document.write(B); </script>
輸出:
NaN
與該函數相關的錯誤和例外情況。
一些要點:
- 月,日期,小時,分鍾,秒,毫秒都應在各自的範圍內,否則valueOf()函數將返回NaN即不是數字。
- 月,日期,小時,分鍾,秒,毫秒的範圍分別為0到11、1到31、0到23、0到59、0到59、0到999。
支持的瀏覽器:JavaScript date.valueOf()函數支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- Opera
- 蘋果瀏覽器
相關用法
- Javascript Math.pow( )用法及代碼示例
- Javascript Array some()用法及代碼示例
- Javascript Number()用法及代碼示例
- Javascript Symbol.for()用法及代碼示例
- Javascript toExponential()用法及代碼示例
- Javascript toString()用法及代碼示例
- Javascript Math.abs( )用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | date.valueOf() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。