如何在jquery中相对于当前位置进行选择?

发布于 2024-10-05 23:46:57 字数 104 浏览 1 评论 0原文

例如 $(". > a") 或可能是 $("this > a" ) 或可能是 $(this)("a ”)

For example $(". > a") or may be $("this > a" ) or may be $(this)("a")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

So要识趣 2024-10-12 23:46:57

您正在尝试编写

$(this).children('a')

注意 this 不是“当前位置”;它是调用函数的上下文。
each 回调或事件处理程序中,它恰好是调用回调的元素。

对于其他选择器,可以调用jQuery的其他遍历方法,如.parent( ).find()

You're trying to write

$(this).children('a')

Note that this isn't the "current position"; it's the context in which a function was invoked.
In an each callback or event handler, it happens to be the element that the callback was invoked for.

For other selectors, you can call jQuery's other traversal methods, such as .parent() or .find().

无人接听 2024-10-12 23:46:57

您可以使用 $("a", this) ,它将在第二个参数 this 的上下文中搜索

您可以提供 DOM 元素、文档或 jQuery 作为第二个参数,用作在其中进行搜索的上下文。

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

You can use $("a", this) , it'll search for <a> within the context of the second argument this.

You can provide a a DOM Element, Document, or jQuery as the second argument to use as context to search within.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文