当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。