0

我已经尝试过以下代码,但它可能会在点击时更改,我想在每 5 秒间隔后更改 iframe 内部。

<html>
 <body>
  <iframe id="foo"></iframe>
  <a href="http://www.mydomain.com" target="foo">This page</a>
 </body>
</html>

基本上我的想法是我的页面将显示在 iframe 中,这 5 个网页将在每 5 秒间隔后一个接一个地更改。

谢谢

4

2 回答 2

1

这将做到:

var urls = ["http://www.google.com", "http://www.example.com"];
var i = 0;

function changeSrc() {
   if (urls.length > i) {
      document.getElementById("foo").src = urls[i];
      i++;
      setTimeout(function() {
         changeSrc();
      }, 5000);
   }
}
changeSrc();

​</p>

于 2012-12-01T01:57:01.923 回答
0

基于@Matthew Dean 的回答:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Fouad Ali</title>
<script>
var links = ["http://www.example.com/page","http://www.example.com/anotherpage"];
var i = 0;
var renew = setInterval(function(){
    document.getElementById("foo").src = links[i];        
    if(links.length == i){
        i = 0;
    }
    else i++;
},5000);
</script>
</head>

<body>
<iframe id="foo" src="http://example.com"></iframe>
</body>
</html>

重要提示:并非所有网站都可以在 iframe 中使用。确保您放入links数组中的网站允许在 iframe 中使用。

于 2012-12-01T02:14:52.457 回答