案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>如果时间早于 20:00,会获得问候 "Good day"。</p>
6
7
<button onclick="myFunction()">点击这里</button>
8
9
<p id="demo"></p>
10
11
<script>
12
function myFunction()
13
{
14
var x="";
15
var time=new Date().getHours();
16
if (time<20)
17
  {
18
  x="Good day";
19
  }
20
document.getElementById("demo").innerHTML=x;
21
}
22
</script>
23
24
</body>
25
</html>
26