gpt4 book ai didi

javascript - 使用 JQuery 为 DIV 设置边距顶部

转载 作者:可可西里 更新时间:2023-11-01 01:17:23 25 4
gpt4 key购买 nike

情况是这样的,我有一个高度为 120px 的固定 header ,当查询字符串为#testdiv 时,我强制页面跳转到#testdiv。

但问题是当页面跳转到上面DIV的开头时,部分内容会丢失,因为它在固定标题后面,有没有jquery强制页面跳转到#testdiv而不是实际边距?

我尝试了下面的代码,但它产生了实际利润

if (url.indexOf('#testdiv') >= 0) {
$('#testdiv').css('margin-top',120);
};

最佳答案

我认为最简单的方法是为您的字段设置 margin-top,并为您的父字段设置负的 margin-top

它应该适合你。

if (url.indexOf('#testdiv') >= 0) {
$('#testdiv').css('margin-top',120);
$('#parent').css('margin-top',"-120px");
};

关于javascript - 使用 JQuery 为 DIV 设置边距顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23611891/

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