我正在尝试在$(此)选择器中“选择”一个img。我知道我可以使用.find(‘img’)找到它,但这是可能的:
$(“img”,这个)?
最好的方法是什么?
本来代码
<a class="picture" href="test.html"> <img src="picture.jpg" alt="awesome"> </a>
解决方法
What’s the most optimal way to do this?
$(this).find(‘img’)和$(‘img’,这个)是等效的。
从文档:
Internally,selector context is implemented with the .find() method,
so $(‘span’,this) is equivalent to $(this).find(‘span’).