为实现网页自动滚屏设置,对浏览器进行如下设置: 浏览器中找到--工具--开发人员选项 选择下图所示“Console” 输入以下代码后,enter键: var i = 0;setInterval(function(){window.scrollTo(0, document.body.scrollHeight/1800*i); if (i<1800){i++;}else i=0;cons
[color=red]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/color] <html [color=red]xmlns="http://www.w3.org/1999/xhtml"[/col