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

前端之家收集整理的这篇文章主要介绍了jquery – $(这个“选择器”)? $(“img”,这个)可能吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在$(此)选择器中“选择”一个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’).

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

原文链接:https://www.f2er.com/jquery/183148.html

猜你在找的jQuery相关文章