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


Javascript Date.now()用法及代碼示例


Date.now()是JavaScript中的內置函數,它返回自1970年1月1日UTC時間00:00:00起經過的毫秒數。由於now()是Date的靜態方法,因此它將始終用作Date.now()。
用法:

var A = Date.now();

其中A是時間(以毫秒為單位)。
參數:此函數不接受任何參數。
返回值:它返回自1970年1月1日UTC 00:00:00以來經過的毫秒數。
JavaScript代碼顯示Date.now()函數的工作方式:
示例1:

<script> 
  
  // Use of function Date.now() 
  var A = Date.now(); 
  
  // Printing the number of millisecond elapsed  
  document.write("The time elapsed in millisecond is: " + A); 
  
</script>    

輸出:


The time elapsed in millisecond is: 1529644667834

示例2:
要獲取當前日期,請使用以下代碼。

<script> 
  
  // Use of Date.now() function 
  var d = Date(Date.now()); 
  
  // Converting the number of millisecond in date string 
  a = d.toString() 
  
  // Printing the current date                     
  document.write("The current date is: " + a)  
  
</script>

輸出:

The current date is: Fri Jun 22 2018 10:54:33 GMT+0530 (India Standard Time)

示例3:
Date(Date.now())與Date()相同,因此可以使用以下代碼獲得相同的結果,即當前日期。

<script> 
  
  // Using Date() function 
  var d = Date(); 
    
  // Converting the number value to string 
  a = d.toString()  
    
  // Printing the current date 
  document.write("The current date is: " + a) 
    
</script>

輸出:

The current date is: Fri Jun 22 2018 11:02:01 GMT+0530 (India Standard Time)

支持的瀏覽器:下麵列出了JavaScript Date.now()函數支持的瀏覽器:

  • 穀歌瀏覽器
  • Internet Explorer 9.0
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器



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