无法在chrome中获得对象的高度

时间:2010-03-22 17:26:57

标签: jquery get height

我想获取对象的height属性:

$('.selector img').each(function(index,e){   
    thisImage = $('#topContent img').get(index);
}

这么久没问题,但是我想得到这样的高度:

thisImage.height;

我认为它是公平的:

thisImage.height();

或:

thisImage.css("height");

但对我来说都不起作用。

最大的问题是

thisImage.height;

剂量不适用于铬。

我错过了什么或这是一个已知的错误?有没有另一种方法来获得铬的高度?

2 个答案:

答案 0 :(得分:1)

var thisImage = $('#topContent img').height();

答案 1 :(得分:1)

具体而言,get()返回的对象将是实际的DOMElement而不是jQuery对象,因此您需要将其包装在jq中。像$(thisImage).height()一样,或者像Catfish建议的那样使用实际的选择器。