同学代码里面看了一下@baka_q提交的代码,他是没有用事件循环绑定,但是他的方法只适合本案例,并且要每个item的的高度都一样,换到别的案例里面就不适用了。老师的代码简洁明了,可以复用,所以作为初学者请保持谦逊的态度为好。
解决 IE6 不支持绝对定位 fixed 以及IE6下被绝对定位的元素在滚动的时候会闪动的问题
/* IE6 hack */
*html,*html body {
background-image:url(about:blank);
background-attachment:fixed;
}
*html #menu {
position: absolute;
top: expression(((e=document.documentElement.scrollTop) ? e : document.body.scrollTop) + 100 + 'px');
}
/* IE6 hack */
*html,*html body {
background-image:url(about:blank);
background-attachment:fixed;
}
*html #menu {
position: absolute;
top: expression(((e=document.documentElement.scrollTop) ? e : document.body.scrollTop) + 100 + 'px');
}