我想知道是否有可能有一个网站,具有一个 iframe 和一些 jquery 代码,每30秒更改一次 iframe 内容。内容是在不同的网页。
就像这样:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
var array = new array();
array[0] = 'http://webPage1.com';
array[1] = 'http://webPage2.com';
// And so on.
// Do something here to change the iframe every 30 second
});
</script>
</head>
<body>
<iframe id="frame"></iframe>
</body>
</html>