jquery – $(这个“选择器”)? $(“img”,这个)可能吗?

前端之家收集整理的这篇文章主要介绍了jquery – $(这个“选择器”)? $(“img”,这个)可能吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在$(此)选择器中“选择”一个img。我知道我可以使用.find(‘img’)找到它,但这是可能的: @H_404_2@$(“img”,这个)?

@H_404_2@最好的方法是什么?

@H_404_2@本来代码

<a class="picture" href="test.html">
    <img src="picture.jpg" alt="awesome">
</a>

解决方法

@H_404_2@What’s the most optimal way to do this?

@H_404_2@$(this).find(‘img’)和$(‘img’,这个)是等效的。

@H_404_2@从文档:

@H_404_2@Internally,selector context is implemented with the .find() method,
so $(‘span’,this) is equivalent to $(this).find(‘span’).

@H_404_2@http://api.jquery.com/jQuery/

猜你在找的jQuery相关文章