如何实现打开网页10秒后,自动向下滚屏200个像素?如何实现打开网页10秒后,自动向下滚屏200个像素?[解决办法]
window.onload = function() { setTimeout("window.scrollTo(0,200);",10000);};