隨機信息顯示

- 中國WEB開發者網絡 (http://www.webasp.net)
-- 網頁特效 (http://www.webasp.net/javascript/)
--- 隨機信息顯示 (http://www.webasp.net/javascript/1/236.htm)
-- 發佈日期: 2004-06-23
<!-- 網頁特效代碼由[中國WEB開發者網絡:http://www.ChinaWebDev.com]提供! -->
<!-- 要實現此效果需要 1 個步驟: -->

<!-- 第 1 步: -->
<!-- 把下面的代碼加到<BODY></BODY>區域中: -->

<script language="JavaScript">
<!-- Hide
var a = Math.random() + ""
var rand1 = a.charAt(5)
quotes = new Array
quotes[1] = '文本信息一'
quotes[2] = '文本信息二'
quotes[3] = '文本信息三'
quotes[4] = '文本信息四'
quotes[5] = '文本信息五'
quotes[6] = '文本信息六'
quotes[7] = '文本信息七'
quotes[8] = '文本信息八'
quotes[9] = '文本信息九'
quotes[0] = '文本信息十'
var quote = quotes[rand1]
//-->
</script>
<script language="JavaScript">
<!-- Hide
document.write( quote )
// -->
</script>


webasp.net