我做了if
函數來檢查寬度是否爲< 100px。由於某種原因,它隱藏了一切。有人知道爲什麼jQuery獲取高度和寬度
$(document).ready(function() {
var pic = $(".pic");
// need to remove these in of case img-element has set width and height
$(".pic").each(function() {
var $this = $(this);
$this.removeAttr("width");
$this.removeAttr("height");
var pic_real_width = $this.width();
var pic_real_height = $this.height();
if(pic_real_width<100){
$(this).css("display","none");
}
});
});
它的工作,謝謝。 var pic_real_width = $ this.width(); var pic_real_height = $ this.height();如果(pic_real_width <100){ \t $(「。pic」).css(「display」,「none」); \t} 隱藏所有圖像。任何ideea爲什麼它不適用於特定的條件? – Carvefx 2009-12-09 12:13:27
請參閱我對您最新問題的回答:http://stackoverflow.com/questions/1873536/jquery-height-condition/1873546#1873546 我已經在那裏回答您。 – 2009-12-09 12:19:31