1

我尝试使用以下函数在滚动 100 像素后将 div 的位置设置为距顶部 100 像素。

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(window).scroll(function(){
    $("#header").css("top",Math.max(0,100-$(this).scrollTop()));
});
</script>
<div class="header"  style="position:fixed;top:100px;background-color:red">something</div>

它不工作(div 坚持它的固定位置)。似乎该功能与div无关。我的问题是什么?

4

2 回答 2

3

你的问题是你divclass标题,而不是id. 尝试 <div id="header" style="position:fixed;top:100px;background-color:red">something</div>

于 2012-07-05T09:12:17.303 回答
0
$(document).ready(function(){
    $('.header').scroll(function(){
        $(this).css("top",Math.max(0,100-$(this).scrollTop()));
    });
});
于 2012-07-05T09:12:15.937 回答