我想获取对象的height属性:
$('.selector img').each(function(index,e){
thisImage = $('#topContent img').get(index);
}
这么久没问题,但是我想得到这样的高度:
thisImage.height;
我认为它是公平的:
thisImage.height();
或:
thisImage.css("height");
但对我来说都不起作用。
最大的问题是
thisImage.height;
剂量不适用于铬。
我错过了什么或这是一个已知的错误?有没有另一种方法来获得铬的高度?
答案 0 :(得分:1)
试
var thisImage = $('#topContent img').height();
答案 1 :(得分:1)
具体而言,get()
返回的对象将是实际的DOMElement而不是jQuery对象,因此您需要将其包装在jq中。像$(thisImage).height()
一样,或者像Catfish建议的那样使用实际的选择器。