為什么我這個(gè)代碼不會(huì)滾動(dòng),審查元素的時(shí)候說(shuō)Move is not defined
<script>
window.onload = function Move(){
? ? var area = document.getElementById("b2");
? ? area.scrollTop++;
setTimeout("Move()",500);
}
<script>
window.onload = function Move(){
? ? var area = document.getElementById("b2");
? ? area.scrollTop++;
setTimeout("Move()",500);
}
2016-05-23
舉報(bào)
2016-06-28
window.onload ?去掉試試
2016-05-24
你把setTimeout("Move()",500);寫成setTimeout(Move,500);試試