实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<script type="text/vbscript">
6
randomize()
7
r=rnd()
8
If r>0.5 Then
9
 document.write("<a href='https://www.shouce.ren'>Learn Web Development!</a>")
10
Else
11
 document.write("<a href='https://www.refsnesdata.no'>Visit Refsnes Data!</a>")
12
End If
13
</script>
14
15
<p>
16
This example demonstrates a link, when you click on the link it will take you to shouce.ren OR to
17
RefsnesData.no. There is a 50% chance for each of them.
18
</p>
19
</body>
20
</html>
21