我正在尝试将元素的margin-bottom更改为next()元素的高度加12px。我尝试了以下方法,但这不起作用。
$("div.entry-content").css("margin-bottom", $(this).next().outerHeight() + 12 + "px");
知道出了什么问题吗?
答案 0 :(得分:3)
试试这个:
$("div.entry-content").css("margin-bottom", function(){
return $(this).next().outerHeight() + 12 + "px"
})