如何找到图像没有高度样式属性。
Html中的Css
<img id="image" src="images/sports/sports9.png" style="width:100px">
Jquery的
if($('#image').css('height') == 0)
{
var imageWidth = $("#image").width();
$("#image").css("width",""+(imageWidth-1)+"px");
}
答案 0 :(得分:2)
试试这个:
var img = document.getElementById('image');
if( !img.style.height) img.style.width = img.width-1+"px";
答案 1 :(得分:0)
也许这就是你追求的目标?
http://binodsuman.blogspot.se/2009/06/how-to-get-height-and-widht-of-image.html
或者,您是否想要检查图像是否设置了 height 属性?
<强>更新强>
点击此处查看类似问题
jQuery check if element has a specific style property defined inline