如何每10秒更换一次iframe

时间:2013-05-30 09:21:47

标签: javascript iframe

如何每隔15秒更改一次iframe。我要在iframe中显示内容。我想在一个大约310px宽的单个盒子上显示它。请给我详细的代码,因为我是javascript的新手。提前谢谢。

1 个答案:

答案 0 :(得分:1)

假设您的iframe有ID' myiframe':

var urls = [
'http://www.google.com',
'http://www.microsoft.com',
'http://www.yahoo.com',
'http://www.facebook.com',
];

setInterval(function() {
    var rand = Math.floor(Math.random()*urls.length);
    document.getElementById('myiframe').src = urls[rand];
}, 15000);

http://jsfiddle.net/samliew/C6CK5/