bootstrap affix
<div class="js-affix"> sidebar </div>
配置 css
.js-affix { top: 10px; } .js-affix.affix-bottom { position: absolute; }
js
$('.js-affix').affix({ offset: { top: 112, bottom: 434 } });