1 Star 0 Fork 1

武林盟主vs/jsdemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
if.html 797 Bytes
一键复制 编辑 原始数据 按行查看 历史
武林盟主vs 提交于 2018-06-27 01:24 . js init demo
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>swith 语句</title>
</head>
<body>
<script>
var oDate = new Date();
var time = oDate.getHours();
console.log(time);
if( time < 12 && time > 9 ){
alert("早上好,新的一天多微笑呢~");
}
else if( time > 12 && time < 14 ){
alert("中午饭了什么,告诉我吧~");
}
else if ( time > 14 && time < 18 )
{
alert("记得每天要喝8杯水哦~");
}
else if ( time > 18 && time < 21 ){
alert("吃完晚饭,多活动活动!");
}
else if( time > 21 && time <= 24){
alert("已经深夜了,早点休息")
}
else if( time > 0 && time < 6 ){
alert("不要熬夜啦~")
}
else{
alert("您起的真早!")
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaozhixing1688/jsdemo.git
git@gitee.com:yaozhixing1688/jsdemo.git
yaozhixing1688
jsdemo
jsdemo
master

搜索帮助