#box {
- /* 非IE6浏览器使用固定元素 */
- position:fixed;
- top:0;
- left:0;
- /* IE6改为绝对定位,并通过css表达式根据滚动位置更改top的值 */
- _position: absolute;
- _top: expression(eval(document.documentElement.scrollTop));
} document.documentElement.scrollTop是滚动条偏移的值,可以根据这个来设置位置,比如document.documentElement.scrollTop+200或者使用margin定位