var $content = $('#SomeDivContainingTwoImages');
$content.children().each(function(i){
$(this).showImage = showImageStatic;
$(this).showImage();
});
返回
Uncaught TypeError: Object #<Object> has no method 'showImage'
运行时。这在 jquery 每个迭代器之外工作,即如果我只是将它应用于单个元素。这是怎么回事?