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


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


下麵是Date now()方法的示例。

  • 例:
    <script> 
      
      // Use of method 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

date.now()方法用於返回自UTC 1970年1月1日00:00:00以來經過的毫秒數。由於now()是Date的靜態方法,因此它將始終用作Date.now()。句法:

var A = Date.now();

參數:此方法不接受任何參數。
返回值:它返回自1970年1月1日UTC 00:00:00以來經過的毫秒數。

上述方法的更多代碼如下:
程序1:要獲取當前日期,請使用以下代碼。

<script> 
  // Use of Date.now() method 
  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)

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

<script> 
  // Using Date() method 
  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
  • Safari




相關用法


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