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


Javascript date.valueOf()用法及代码示例


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

    与该函数相关的错误和例外情况。

  1. 如果在创建日期对象时未传递任何参数作为参数,但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
  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浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | date.valueOf() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。