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