为什么我这个代码不会滚动,审查元素的时候说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
举报