- 1. 수없이 많은 꿈을 꾸어본 적이 있나요?
- 2. 하지만 시간이 지나면서 환멸을 느끼게 됩니다
- 3. 미래를 기대해본 적 있으신가요?
- 4. 하지만 성장기에 길을 잃었습니다
- 5. CSDN 중국어 프로그래머 포럼
- 6. 다같이 모이자
- 7. 다 좋아보이네요
getElementsByClassName의 DOM 메소드
<script> <BR>var t=setInterval(myfunc,1000); <BR>var oBox=document.getElementById("ScrollBox"); <BR>function myfunc(){ <BR>var o=oBox.firstChild <BR>oBox.removeChild(o) <BR>oBox.appendChild(o) <BR>} <BR>oBox.onmouseover=function(){clearInterval(t)} <BR>oBox.onmouseout=function(){t=setInterval(myfunc,1000)} <BR></script>