案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<script type="text/javascript">
5
image0="/img/w3xue_logo_white.jpg"
6
href0="/"
7
alt0="W3xue.com"
8
9
image1="/img/h5.gif"
10
href1="/manual/html/"
11
alt1="HTML / HTML5 参考手册"
12
13
image2="/img/js.gif"
14
href2="/manual/js/"
15
alt2="JavaScript 参考手册"
16
17
len=3
18
19
now=new Date()
20
now=now.getSeconds()
21
rnd=now%len
22
23
image=eval("image"+rnd)
24
href=eval("href"+rnd)
25
alt=eval("alt"+rnd)
26
27
document.write("<a href='" + href + "'>")
28
document.write("<img src='" + image + "' alt='" + alt + "'></a>")
29
</script>
30
31
<h3>请刷新该页面,您会看到广告条的变化。</h3>
32
33
</body>
34
</html>
35