下面请跟着图老师小编一起来了解下JavaScript打开页面后自动随机跳转页面代码,精心挑选的内容希望大家喜欢,不要忘记点个赞哦!
【 tulaoshi.com - Web开发 】
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
titlewww.joyrssmail.com/title
script language=javascript
function randompage(){
var randomindex=Math.floor(Math.random()*3)+1;//如果你有四个页面就把3改成4,如果有5个,就把3改成5
top.location.replace('index'+randomindex+'.htm');
}
randompage()
/script
/head
body onload="randompage()"
/body
/html
来源:http://www.tulaoshi.com/n/20160219/1607496.html
看过《JavaScript打开页面后自动随机跳转页面代码》的人还看了以下文章 更多>>