时间对象

创建时间对象

var nowdate = new Date();
console.log(nowDate);

函数调用会显示当前的年,月,日,时,分,秒的格式。


时间对象_第1张图片
控制台显示
//星期转大写
function zhuangdaxie(day){
switch (day){
case 0:{
        return "日";
        break;
}
case 1:{
        return "一";
        break;
}
case 2:{
        return "二";
        break;
}
default:
}
}
function getNowDate(){
//创建当前时间
var nowDate = new  Date();
var year = nowDate.getFullYear();
var month = nowDate.getMonth() + 1; //  获取月份从0开始  
var weekDay = zhuandaxie(nowDate.getDay());
var day = nowDate.getDate();
var hours = nowDate.getHours();
var minutes = nowDate.getMinutes();
var seconds = nowDate.getSeconds();
return year + "年" + month + "月" + day + "日 星期" +weekDay +"  " + hours +":" + minutes + ":" +seconds;

var res = getNowDate();
console.log(res);
}
时间对象_第2张图片
控制台显示

使用js写出时间距离2017年倒计时


00天 00时 00分 00秒
时间对象_第3张图片
效果展示

你可能感兴趣的:(时间对象)