我怎样才能找到图像是否没有高度样式属性。
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");
}