首页 > 代码库 > JS工具对象 DATE 方法
JS工具对象 DATE 方法
1.获取当前电脑的系统时间 var time = new Date();
var time = new Date();//获取当前系统时间
console.log(time); // Mon Apr 03 2017 09:03:18 GMT+0800 (中国标准时间)
2.获取当前年 time.getFullYear();
var time = new Date(); var year = time.getFullYear(); console.log(year);//2017
3.获取当前月 time.getMonth();
var time = new Date(); var month = time.getMonth(); console.log(month); //3
4.获取当前天 time.getDate();
var time = new Date(); var day = time.getDate(); console.log(day);3
5.获取当前 (0-6代表周日-周六)time.getDay();
var time = new Date(); var week = time.getDay(); console.log(week); // 1 (结果 0-6 周日、周一、周二...周六 )
6.获取当前时间(当前小时整点) time.getHours();
var time = new Date(); var hours = time.getHours(); console.log("hours "+hours);// 10
7.获取当前分钟(分钟) time.getMinutes();
var time = new date(); var minutes = time.getMinutes(); console.log(minutes); //34
8.获取当前秒 time.getSeconds();
var time = new date(); var seconds = time.getSeconds(); console.log(seconds);
9.获取当前毫秒 time.getMilliseconds();
var time = new Date(); var mlSeconds = time.getMilliseconds(); console.log("miSeconds "+mlSeconds);// 519
10.
JS工具对象 DATE 方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。