new Date():时间的获取和转换

Posted 芒果加冰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了new Date():时间的获取和转换相关的知识,希望对你有一定的参考价值。

new Date()获取系统当前时间:
var currentTime= new Date().getYear();//获取当前年份(2位)
var currentTime= new Date().getFullYear();//获取当前完整年分(4位)
var currentTime= new Date().getMonth();//获取当前月份(0~11,0代表1月)
var currentTime= new Date().getDate();//获取当前日(1-31日)
var currentTime= new Date().getDay();//获取当前星期(0~6,0代表星期天)
var currentTime= new Date().getHours();//获取当前小时(0~23)
var currentTime= new Date().getMinutes();//获取当前分钟数(0~59)
var currentTime= new Date().getSeconds();//获取当前秒数(0~59)
var currentTime= new Date().getMilliSeconds();//获取当前毫秒数(0-999)
var currentTime= new Date().toLocaleDateString();//获取当前日期(“年/月/日”)
var currentTime= new Date().toLocaleTimeString();//获取当前时间
var currentTime= new Date().toLocaleString( ); //获取日期与时间

$filter转换时间格式为时间字符串:
var currentTime= $filter(‘date‘)(已获得的时间,‘yyyy-MM-dd HH:mm‘);转换时间字符串("年-月-日 时:分")
new Date()转换时间字符串为时间格式:
var currentTime= new Date(已知时间字符串);转换时间格式

  

以上是关于new Date():时间的获取和转换的主要内容,如果未能解决你的问题,请参考以下文章

java中怎么把Long转换成日期格式

在js中怎么把date转换成字符串

new Date().getTime()和System.currentTimeMillis()对比

js new Date(String) 时间少8个小时的问题

js new Date() 获取时间

js常用代码片段(更新中)