下面是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
相关用法
- JavaScript Number valueOf()用法及代码示例
- JavaScript Boolean valueOf()用法及代码示例
- Javascript Array valueOf()用法及代码示例
- Javascript string.valueOf()用法及代码示例
- JavaScript BigInt.prototype.valueOf()用法及代码示例
- Javascript symbol.valueOf()用法及代码示例
- Typescript String valueOf()用法及代码示例
- Typescript Number valueOf()用法及代码示例
- Lodash _.prototype.valueOf()用法及代码示例
- Moment.js moment().valueOf()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
- JavaScript Date UTC()用法及代码示例
- JavaScript Date getHours()用法及代码示例
- Javascript date.getMinutes()用法及代码示例
- Javascript date.getMonth()用法及代码示例
- Javascript date.getSeconds()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript Date valueOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。