gpt4 book ai didi

jquery - 用 jquery 改变几个 div css onload (this)

转载 作者:太空宇宙 更新时间:2023-11-04 03:36:23 24 4
gpt4 key购买 nike

当页面加载时,我尝试更改每个 .partition div 的顶部边距。我曾尝试使用 $(this) 但找不到好的解决方案:

  $(document).ready(function() {
$('.partition').css({
'marginTop': - ($(this).height() / 2)
});
});

有什么想法吗?非常感谢!

最佳答案

无需使用.each()。您可以直接从函数返回值:

$('.partition').css({
'marginTop': function () {
return -($(this).height() / 2)
}
});

关于jquery - 用 jquery 改变几个 div css onload (this),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25511108/

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