菜鸟教程 tryjs_ifthenelse 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <p>点击这个按钮,获得基于时间的问候。</p>
<button onclick="myFunction()">点击这里</button>
<p id="demo"></p>
<script>
function myFunction()
{
	var x="";
	var time=new Date().getHours();
	if (time<20)
    {
	 	x="Good day";
     }
	else
    {
 		x="Good evening";
 	}
	document.getElementById("demo").innerHTML=x;
}
</script>