Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好抱歉问愚蠢的问题:/我需要知道其宽度设置为 100% 的图像的高度;请考虑,不是图像的原始高度,而是在客户端实际看到的高度!PS。使用此功能时,我将永久获得原始高度:
$('#myImage').height(); 请帮忙:(
非常感谢
如果您无法获得正确的高度,.height()或者.css('height')可能是浏览器在图像完全加载之前返回了高度。
.height()
.css('height')
尝试使用该.load()功能:
.load()
$('#myImage').load(function(){ var h = $(this).height(); });