2

我正在尝试将元素的边距底部更改为 next() 元素的高度加上 12px。我尝试了以下方法,但这不起作用。

$("div.entry-content").css("margin-bottom", $(this).next().outerHeight() + 12 + "px");

知道出了什么问题吗?

4

1 回答 1

3

试试这个:

$("div.entry-content").css("margin-bottom", function(){
    return $(this).next().outerHeight() + 12 + "px"
})
于 2012-08-25T14:51:49.233 回答