这段代码:
$('#ad img').each(function(){
if($(this).width() > 125){
$(this).height('auto');
$(this).width(125);
}
});
在 Firefox 上正常工作,但在 Chrome 上不能正常工作。内部的img
标签#ad
由 限制height
,但如果这使它们太宽,我需要限制宽度。有没有更好的方法可以在所有浏览器上运行?
图片的html如下:
<img src='http://easyuniv.com/img/ads/".$ad['img']."' height='40px'>