當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Date valueOf()用法及代碼示例


下麵是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

date.valueOf()方法用於獲取UTC 1970年1月1日00:00:00與給定日期之間的毫秒數。句法:

dateObj.valueOf()

參數:此方法不接受任何參數。它僅與使用Date()構造函數創建的Date對象一起使用。

返回值:它返回1970年1月1日UTC和給定日期之間的毫秒數,作為Date()構造函數的內容。

注意:DateObj是使用Date()構造函數創建的有效Date對象,其內容用於獲取1970年1月1日UTC和給定日期之間的毫秒數,作為Date()構造函數的內容。



上述方法的更多代碼如下:

程序1:如果在創建日期對象時未傳遞任何參數作為參數,但是valueOf()方法仍返回1970年1月1日00:00:00 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

程序2:一個月的日期,範圍是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瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript Date valueOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。