页面内容:
<div id="head" style="width:100%;height:72pxmargin-bottom:10px;"></div>
<div id="left" style="width:38%;float:left;margin-right:10px;">
<div id="l_head" style="width:100%;height:46px;margin-bottom:10px;"></div>
<div id="l_main" style="width:100%;height:350px;"></div>
</div>
<div id="right" style="width:61%;height:1300px; float:left;"></div>
js部分,为了方便引用了jquery
$(window).scroll(function (){//鼠标滚动 距离 var st = $(this).scrollTop(); if (st > 92 || st == 92) { $("#l_main").css({"position":"fixed","top":"0px","left":"0px","width":"38%"}); }else if(st < 92){ $("#l_main").css({"position":"relative","top":"0px","left":"0px","width":"100%"});
} });