如何在jquery中相对于当前位置进行选择?
例如 $(". > a")
或可能是 $("this > a" )
或可能是 $(this)("a ”)
For example $(". > a")
or may be $("this > a" )
or may be $(this)("a")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在尝试编写
注意
this
不是“当前位置”;它是调用函数的上下文。在
each
回调或事件处理程序中,它恰好是调用回调的元素。对于其他选择器,可以调用jQuery的其他遍历方法,如
.parent( )
或.find()
。You're trying to write
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()
.您可以使用
$("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 argumentthis
.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/