gpt4 book ai didi

javascript - 在 Iframe 中旋转 URL

转载 作者:数据小太阳 更新时间:2023-10-29 04:34:13 25 4
gpt4 key购买 nike

我有 10 个不同的 url,我想将它们输入到 iframe src 属性中,我还想在 iframe 中的所有 10 个 url 之间每 5 秒轮换一次。

不确定如何使用 javascript/最佳方法做到这一点?

抱歉,应该提到我正在使用 IE6。

谢谢。

最佳答案

<iframe id="rotator" src="http://...first"></iframe>

<script>
// start when the page is loaded
window.onload = function() {

var urls = [
"http://...first",
"http://...second",
// ....
"http://...tenth" // no ,!!
];

var index = 1;
var el = document.getElementById("rotator");

setTimeout(function rotate() {

if ( index === urls.length ) {
index = 0;
}

el.src = urls[index];
index = index + 1;

// continue rotating iframes
setTimeout(rotate, 5000);

}, 5000); // 5000ms = 5s
};
</script>

关于javascript - 在 Iframe 中旋转 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3137530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com