详解JavaScript中Date.UTC()方法的使用
程序员文章站
2023-11-30 08:25:22
此方法需要一个日期,并返回自1970年1月1日按照通用时间午夜的毫秒数。
语法
date.year,month,day,[hours,[minute...
此方法需要一个日期,并返回自1970年1月1日按照通用时间午夜的毫秒数。
语法
date.year,month,day,[hours,[minutes,[seconds,[ms]]])
注:括号内的数据是可选的
下面是参数的详细信息:
- year : 四位数字表示年
- month : 0和11之间的整数,表示月份
- day : 1到31之间的整数,表示日期
- hours : 0到23之间的整数,表示小时
- minutes : 0到59之间的整数,表示分钟
- seconds : 0到59之间的整数,表示秒
- ms :介于0和999之间的整数,表示毫秒
返回值:
自1970年1月1日午夜的毫秒数
例子:
<html> <head> <title>javascript utc method</title> </head> <body> <script type="text/javascript"> var msecs = date.utc(2008,9,6); document.write( "number of milliseconds from 1970: " + msecs ); </script> </body> </html>
这将产生以下结果:
number of milliseconds from 1970: 1223251200000
推荐阅读
-
Mysql5.7中使用group concat函数数据被截断的问题完美解决方法
-
对Python中实现两个数的值交换的集中方法详解
-
JavaScript中Array方法你该知道的正确打开方法
-
深入SQLServer中ISNULL与NULLIF的使用详解
-
详解C#编程获取资源文件中图片的方法
-
详解Django中的ifequal和ifnotequal标签使用
-
ASP.NET MVC4中使用Html.DropDownListFor的方法示例
-
android UI进阶之android中隐藏的layout 抽屉的使用方法
-
详解iOS应用的设计模式开发中Mediator中介者模式的使用
-
Android中ViewFlipper的使用及设置动画效果实例详解