채택완료

iframe의 src를 1초마다 변경하고 싶습니다.

2016-04-20 (수) 14:52:03 7,419

iframe 내 src를 1초마다 변경하고 싶은데요.

iframe 주소가 abc.com/1.html 이라면 그다음 2.html 3.html .... 999999.html까지 변경하고 싶습니다.

자바스크립트로 어떻게 해야할까요?

|

답변 1개

채택된 답변
+20 포인트

<iframe name="testframe" src="1.html"></iframe>

<script>

var second = 1;

function change_src(){

   second++;

   document.testframe.src = second+".html";

}

setInterval("change_src()",1000);

</script> 

답변을 작성하려면 로그인이 필요합니다.