jQuery("img", this);
Which is the same as
jQuery(this).find("img");
If the imgs are direct descendants of the clicked element, you can also use:
jQuery(this).children("img");
$(this).find('img');
$(this).children("img:first")
$(this).next();
$("#"+$(this).attr("id")+" img:first")
本文深入探讨了jQuery中用于操作DOM元素的关键方法,包括选择器、查找子元素、获取元素等,通过实例演示如何高效地进行DOM操作。
601

被折叠的 条评论
为什么被折叠?



