body{ background-image:url(about:blank); background-attachment:fixed; } .myDiv{ position:fixed !important; position:absolute; top:expression(eval(document.documentElement.scrollTop)); }
body元素中background-image:url(about:blank);background-attachment:fixed;可防止ie6中出现闪动;
因为ie6不支持position:fixed属性,所以要设置它的优先级高于position:absolute;
通过表达式动态调整top属性为到滚动条上方长度