var $content = $('#SomeDivContainingTwoImages');
$content.children().each(function(i){
$(this).showImage = showImageStatic;
$(this).showImage();
});
Uncaught TypeError: Object #<Object> has no method 'showImage'
時運行。這在每個迭代器的jQuery之外工作,也就是說,如果我只是將它應用於單個元素。這是怎麼回事?
會將它添加到所有的jquery對象嗎? – rutherford
這會將函數添加到所有jQuery對象 –