我如何在 jQuery 中知道加载的图像的高度:
style="width:100%; height: auto;"
移动设备中的屏幕宽度是不同的,我不喜欢页面加载时“跳跃”的效果。我希望我很清楚。谢谢
我如何在 jQuery 中知道加载的图像的高度:
style="width:100%; height: auto;"
移动设备中的屏幕宽度是不同的,我不喜欢页面加载时“跳跃”的效果。我希望我很清楚。谢谢
尝试以下(看看它是否有帮助:)):
alert("width: " + $("#imgRandom").width() +"\nHeight: "+$("#imgRandom").height() );
小提琴链接:http: //jsfiddle.net/6dnSM/
我希望它有帮助。
您可以很容易地使用height()
and获得高度outerHeight()
,例如:
var imgHeight = $('img.image-class').height();
或者:
var imgHeight = $('img.image-class').outerHeight(false); // the argument indicates whether to include the margin