划分与另一个div + 100px相同的高度

时间:2015-12-17 15:47:31

标签: jquery css

我希望head-paint-container与head-container + 100px

的高度相同

我目前有

$(".head-paint-container").css({'height':($(".head-container").height()+'px')});

如何添加+ 100px?

3 个答案:

答案 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)