日期:2014-05-16 浏览次数:20507 次
var links = [
{url : 'www.baidu.com' , time : 10000},
{url : 'http://t.sina.com.cn' , time : 1000*60*3}
];
var currentIndex = 0;
function change(isPostBack){
var time = links[currentIndex].time;
if(isPostBack){
time = 0;
}
setTimeout(function(){
/*切换*/
links[currentIndex].url;
++currentIndex;
if(currentIndex==links.length)
currentIndex = 0;
change(false);
} , time);
}
change(true);
<html>
<head>
<script src="a.js"></script>
<script>
window.onload = function(){
registerFresh("file:///C:/Users/CSS01/Desktop/新建文件夹/b.html",3000);
}
</script>
</head>
<body>
这是a页面
</body>
</html>
<html>
<head>
<script src="a.js"></script>
<script>
window.onload = function(){
registerFresh("file:///C:/Users/CSS01/Desktop/新建文件夹/a.html",3000);
}