解决IE不支持position:fixed问题

时间:2023-03-08 16:27:39

#box {

  1. /* 非IE6浏览器使用固定元素 */
  2. position:fixed;
  3. top:0;
  4. left:0;
  5. /* IE6改为绝对定位,并通过css表达式根据滚动位置更改top的值 */
  6. _position: absolute;
  7. _top: expression(eval(document.documentElement.scrollTop));

} document.documentElement.scrollTop是滚动条偏移的值,可以根据这个来设置位置,比如document.documentElement.scrollTop+200或者使用margin定位