码迷,mamicode.com
首页 > 其他好文 > 详细

前端获取当前日期,年、月、日

时间:2019-12-25 13:11:39      阅读:485      评论:0      收藏:0      [点我收藏+]

标签:date   code   var   当前日期   div   get   获取   日期   style   

 

var date = new Date(),
time=date.getFullYear()+"-"+(date.getMonth()+1)+"-"+date.getDate();//表示当前日期

var y = date.getFullYear();
var m = date.getMonth()+1;
var d = date.getDate();
var h = date.getHours()+1;
var mm = date.getMinutes()+1;
var s = date.getSeconds()+1;

前端获取当前日期,年、月、日

标签:date   code   var   当前日期   div   get   获取   日期   style   

原文地址:https://www.cnblogs.com/ZhaoHS/p/12095872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!