要获取当前页面的滚动条纵坐标位置, 用: document.documentElement.scrollTop; 而不是: document.body.scrollTop; documentElement 对应的是 html 标签,而 body 对应的是 body 标签. 在标准w3c下,document.body.scrollTop恒为0,需要用document.documentElement.scrollTop来代替 如果你想定位鼠标相对于页面的绝对位置时,你会发现
在javascript中,document.write()方法用来向网页中输出内容. 1 . 第一种:输出内容用" "括起,直接输出" "号内的内容.第四种 <script type="text/javascript"> document.write("I am a student studying for JavaScript!"); </script> 在网页中输出的内容即:I am a stude