30 초마다 iframe 콘텐츠를 변경하는 iframe과 일부 jquery 코드가있는 사이트를 가질 수 있는지 궁금합니다. 콘텐츠가 다른 웹 페이지에 있습니다.
이 같은:
<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>
답변
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
var locations = ["http://webPage1.com", "http://webPage2.com"];
var len = locations.length;
var iframe = $('#frame');
var i = 0;
setInterval(function () {
iframe.attr('src', locations[++i % len]);
}, 30000);
});
</script>
</head>
<body>
<iframe id="frame"></iframe>
</body>
</html>
답변
iframe 내부의 실제 콘텐츠가 아닌 iframe이 가리키는 위치 만 변경하려면 src
속성 만 변경하면 됩니다.
$("#myiframe").attr("src", "newwebpage.html");
답변
var handle = setInterval(changeIframe, 30000);
var sites = ["google.com", "yahoo.com"];
var index = 0;
function changeIframe() {
$('#frame')[0].src = sites[index++];
index = index >= sites.length ? 0 : index;
}