我希望head-paint-container与head-container + 100px
的高度相同我目前有
$(".head-paint-container").css({'height':($(".head-container").height()+'px')});
如何添加+ 100px?
答案 0 :(得分:1)
你应该能够添加100:
$(".head-paint-container").css({'height':($(".head-container").height() + 100 +'px')});
并使其更具可读性:
var containHeight = $(".head-container").height() + 100;
$(".head-paint-container").css({'height': containHeight + 'px')});
答案 1 :(得分:0)
在jQuery中将100px添加到高度。
$(".head-paint-container").css({'height':($(".head-container").height() + 100 +'px')});
答案 2 :(得分:0)
您可以使用.height()
代替.css()
$(".head-paint-container").height($(".head-container").height()+100)