随机产生一个数(1-n) n为网页数
var num=Math.floor(Math.random()*n+1)
每个数对应一个网页地址
var src
switch(num)
{
case 1:
src=第一个网页地址
break
case 2:
src=第一个网页地址
break
.
.
.
case n:
src=第n个网页地址
break
default:
src=""
}
3. window.open(src)
可以将document.links用,$("指定的DIV").find("a")代替,其他都一样,也就是function random_all(){
var myrandom=Math.round(Math.random()*($("指定的DIV").find("a").length-1))
window.location=$("指定的DIV").find("a")[myrandom].href
}
注:我这里使用了jquery代码
呵呵 楼主的随机打开很好实现,代码如下:<script>//随机函数 注意数字顺序
url = new Array(6)
url[0] = 'http://www.58i.info/'
url[1] = 'http://www.mnrtw.com/'
url[2] = 'http://www.zwbjt.com.cn'
url[3] = 'http://www.meinv2.com/ '
url[4] = 'http://www.busjieti.com'
url[5] = 'http://www.bj-news.cn/'
urlx = Math.floor(Math.random() * url.length)
document.write('<a id="go" href="'+url[urlx]+'">正在打开..</a>')
go.click()
</script>
谢谢采纳!