当前位置:开发者网络 >> 网页特效 >> 文本特效 >> 内容
精彩推荐
分类最新特效
分类热点特效
  
随机信息显示
日期:2005-06-20   人气:   【字体: 】【收藏此文


<!-- 网页特效代码由[中国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>