菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 建站知识

JavaScript代码实现年月日星期和时间显示

发布时间:2024-01-05  栏目:建站知识   浏览:   分类:js教程 JS时间 js代码

要获取当前的年月日、星期、早中晚时间,可以使用JavaScript的Date对象。首先,创建一个Date对象,然后分别获取年、月、日、星期、小时、分钟和秒。最后,根据小时判断是早上、中午还是晚上。 代码如下: ```javascript function getCurrentTime() { const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1; const day = now.getDate(); const week = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'][now.getDay()]; const hour = now.getHours(); let time; if (hour < 6) { time = '凌晨'; } else if (hour < 9) { time = '早上'; }

JS年月日星期早中午时间代码,菜鸡源码自用时间代码,完美简单。

varday="";varmonth="";varampm="";varampmhour="";varmyweekday="";varyear="";varhh;varwh;mydate=newDate();myweekday=mydate.getDay();mymonth=mydate.getMonth()+1;myday=mydate.getDate();myyear=mydate.getYear();year=(myyear>200)?myyear:1900+myyear;hh=mydate.getHours();if(myweekday==0)weekday="星期日";elseif(myweekday==1)weekday="星期一";elseif(myweekday==2)weekday="星期二";elseif(myweekday==3)weekday="星期三";elseif(myweekday==4)weekday="星期四";elseif(myweekday==5)weekday="星期五";elseif(myweekday==6)weekday="星期六";if(5<hh&&hh<=9){wh='早晨好'}elseif(9<hh&&hh<=11){wh='上午好'}elseif(11<hh&&hh<=13){wh='中午好'}elseif(13<hh&&hh<=17){wh='下午好'}elseif(17<hh&&hh<=23){wh='晚上好'}else{wh='半夜好'}document.write("<fontcolor=#FFFFFF>"+year+"年"+mymonth+"月"+myday+"日"+weekday+""+wh+"</font>");

代码输出结果

2020年10月12日星期一下午好


相关文章

    无相关信息
评论
建站知识
建站知识
使用技巧
调试安装
运营推广