码迷,mamicode.com
首页 > Web开发 > 详细

js日期转换工具

时间:2018-12-13 13:51:36      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:new   mat   fun   col   pre   转换   atd   debug   class   

var dq = new Date();//定义当前时间
var sDueDate = formatDate(dq);/调用日期转换方法 传入当前时间
//进行日期转换
function formatDate(now) { debugger
var year = now.getFullYear(); var month = now.getMonth() + 1; var date = now.getDate()-10; var hour = now.getHours(); var minute = now.getMinutes(); var second = now.getSeconds(); return year + "-" + month + "-" + date; }

 

js日期转换工具

标签:new   mat   fun   col   pre   转换   atd   debug   class   

原文地址:https://www.cnblogs.com/Ai-Hen-Jiao-zhi/p/10113470.html

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