JS怎么把毫秒数转换成年月日时分秒

2025-03-14 00:51:31

1、将时间戳转换成date类型之后var now = new Date(15334蚀卺垦肝72686000);可以通过get僻棍募暖FullYear()的方式获取年份var year = now.getFullYear(); //获取年份

JS怎么把毫秒数转换成年月日时分秒

2、通过getMonth()的方式获取月份,月份的范围时0-11,所以获取的月份的值还要加上1var month = now.getMonth(); //获取月份

JS怎么把毫秒数转换成年月日时分秒

3、通过getDate()的方式获取日var date = now.getDate(); //获取日期

JS怎么把毫秒数转换成年月日时分秒

4、通过getHours()的方式获取时var hour = now.getHours(); //获取时

JS怎么把毫秒数转换成年月日时分秒

5、通过getMinutes()的方式获取分钟var minu = now.getMinutes(); //获取分钟

JS怎么把毫秒数转换成年月日时分秒

6、通过getSeconds()的方式获取秒var sec = now.getSeconds(); //获取秒钟

JS怎么把毫秒数转换成年月日时分秒
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢