6.滚动事件
a>滚动事件:onscroll
在标准浏览器下:window.onscroll或document.onscroll
ie6,7,8,认为document没有onscroll事件,使用尽量window
b>垂直方向滚动条滚动过的距离顶部的距离 :scrollTop
火狐下获取页面scrollTop的距离:document.documentEelement.scrollTop (谷歌不支持)
谷歌和ie:document.body.scrollTop
7.取消默认行为
a> return false; 这个如果当函数有返回值的时候就不能再用了
b>标准浏览器下的方法:e.preventDefault();
c>ie内核下:e.returnValue = false;
d>ie如果在取消图片的默认行为的时候需要搭配 obj.setCapture()一起使用 (让图片设置全局捕获, 将鼠标的焦点放在图片上)
图片的事件完成之后,要释放图片的全局捕获:obj.releaseCapture()
e.preventDefault && e.preventDefault();
e.rentrnValue && (e.returnValue = false);
obj.setCapture && obj.setCapture();
obj.releaseCapture && obj.releaseCapture();