position:absolute; bottom:2px 随滚动条
js做了个div弹出层, $("#windown-box").css("position", "absolute");定位。移动滚动条不跟随页面滚动?
转:http://zhidao.baidu.com/link?url=RLwhg7yljlBel14kmTU7TxJ70BKaiWK1En9lrw11_7Sh1y3yGrJ9GLKolb2Ej4U6FLZoxd81-ozsQJSgctNuOa
关键是:把absolute换成fixed
代码:position:fixed
<style type="text/css"> .global { width:auto; height:auto; position:fixed; bottom:2px; right:2px; } </style>