gpt4 book ai didi

javascript - 最有效的方法是什么(jquery 片段)?

转载 作者:行者123 更新时间:2023-12-02 20:17:26 24 4
gpt4 key购买 nike

$("#content").scroll(function(e){
var distance_from_top = $("#content").scrollTop();
var theinverse = -1 * distance_from_top;
var theinverse2 = theinverse + "px";
$("#topheader").css( "marginTop", theinverse2);
});

执行上述操作最有效的方法是什么?基本上使 #topheader 上边距等于从顶部滚动的负距离。

最佳答案

缓存缓存缓存。

content = $("#content");
topheader = document.getElementById("topheader");
content.scroll(function() {
topheader.style.marginTop = -content.scrollTop() + "px";
});

关于javascript - 最有效的方法是什么(jquery 片段)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6065432/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com