jquery的高度方法对我不起作用?

时间:2014-02-21 15:39:37

标签: jquery css

我为网站编写了一个jquery的高度方法。但它没有用。我无法理解这有什么问题。如果你能帮助我。我附上了一张图片,你可以从中了解一切。我已经使用了以下代码但不起作用。这是真实网站link。提前谢谢。

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script>
  $(document).ready(function(){
    var cHeight = $('#block-4').outerHeight(true);
    $('#block-57').css("min-height","cHeight");
  });
</script>

enter image description here

2 个答案:

答案 0 :(得分:3)

cHeight是变量而不是字符串

$('#block-57').find('ul').content().css("min-height",cHeight);

答案 1 :(得分:1)

好吧,如果cHeight附近没有引号,它会更好用(否则javascript只是读取字符串,而不是变量):

$('#block-57').find('ul').content().css("min-height",cHeight);