标签:
<html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>随机文本</title>
</head>
<body>
<script type="text/JavaScript">
var a = Math.random() + "" //通过Math.random()产生一个随机数
var rand1 = a.charAt(5) //到这个数的第五个字符(实际还是从0~9的数字)
quotes = new Array() //创建消息数组
quotes[1] = ‘长风破浪会有时‘ //这里分配6句随机出现的文本
quotes[2] = ‘直挂云帆济沧海‘
quotes[3] = ‘山重水复疑无路‘
quotes[4] = ‘柳暗花明又一村‘
quotes[5] = ‘问渠那得清如许‘
quotes[0] = ‘为有源头活水来‘
var quote = quotes[rand1] //由随机数选择一句话
</script>
<script type="text/JavaScript">
document.write( quote ) //将上面选择的话写进页面
</script>
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/FG123/p/4391190.html