热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

js获取星期几;js获取系统当前时间,并转换为yyyymmddhh:mm:ss格式

js获取系统当前时间,并转换为yyyy-mm-dd hh:mm:ss格式 方法一:var currentDate = new Date(+new Date(
  1. js获取系统当前时间,并转换为yyyy-mm-dd hh:mm:ss格式

方法一:

var currentDate = new Date(+new Date()+8*3600*1000).toISOString().replace(/T/g,' ').replace(/\.[\d]{3}Z/,'');

该方法在ie低版本浏览器会存在兼容性问题,推荐第二种方法

方法二:

function currentDate(date){var year &#61; date.getFullYear(); //年 ,从 Date 对象以四位数字返回年份var month &#61; date.getMonth() &#43; 1; //月 ,从 Date 对象返回月份 (0 ~ 11) ,date.getMonth()比实际月份少 1 个月var day &#61; date.getDate(); //日 ,从 Date 对象返回一个月中的某一天 (1 ~ 31)var hours &#61; date.getHours(); //小时 ,返回 Date 对象的小时 (0 ~ 23)var minutes &#61; date.getMinutes(); //分钟 ,返回 Date 对象的分钟 (0 ~ 59)var seconds &#61; date.getSeconds(); //秒 ,返回 Date 对象的秒数 (0 ~ 59)//修改月份格式if (month >&#61; 1 && month <&#61; 9) {month &#61; "0" &#43; month;}//修改日期格式if (day >&#61; 0 && day <&#61; 9) {day &#61; "0" &#43; day;}//修改小时格式if (hours >&#61; 0 && hours <&#61; 9) {hours &#61; "0" &#43; hours;}//修改分钟格式if (minutes >&#61; 0 && minutes <&#61; 9) {minutes &#61; "0" &#43; minutes;}//修改秒格式if (seconds >&#61; 0 && seconds <&#61; 9) {seconds &#61; "0" &#43; seconds;}//格式(yyyy-mm-dd hh:mm:ss)var currentFormatDate &#61; year &#43; "-" &#43; month &#43; "-" &#43; day &#43; " " &#43; hours &#43; ":" &#43; minutes &#43; ":" &#43; seconds;return currentFormatDate;}currentDate(new Date())

  1. js获取星期几&#xff1a;

function getWeekDate(now) {var day &#61; now.getDay();var weeks &#61; ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];var week &#61; weeks[day];return week;}getWeekDate(new Date());


推荐阅读
author-avatar
Xiao兔兔乖乖
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有