0
在jQuery的,是有必要檢查變量包含的東西或jQuery的本身做它...讓我用一個例子解釋:jquery:在應用效果之前驗證元素是否爲空...是否有必要?
var image = $(placeholder).children('img');
// if placeholder contains image, hide it!
if (image.length) {
alert('found one, hide it!');
$(image).fadeOut(400);
}
... more code here...
我已經意識到,只是寫了以下的工作原理相同...
var image = $(placeholder).children('img');
$(image).fadeOut(400);
我的意思是,先做一個檢查或讓jquery處理它是好的做法嗎?