0

我如何在 jQuery 中知道加载的图像的高度:

style="width:100%; height: auto;"

移动设备中的屏幕宽度是不同的,我不喜欢页面加载时“跳跃”的效果。我希望我很清楚。谢谢

4

2 回答 2

1

尝试以下(看看它是否有帮助:)):

alert("width: " + $("#imgRandom").width() +"\nHeight:  "+$("#imgRandom").height() );

小提琴链接:http: //jsfiddle.net/6dnSM/

我希望它有帮助。

于 2013-08-15T09:39:06.437 回答
0

您可以很容易地使用height()and获得高度outerHeight(),例如:

var imgHeight = $('img.image-class').height();

或者:

var imgHeight = $('img.image-class').outerHeight(false); // the argument indicates whether to include the margin
于 2013-08-15T08:44:06.343 回答