jQuery $(this) 语法问题
这是一个有效的选择器吗?如果不是,正确的方法是什么?
$($(this)+' childElement')....
Is this a valid selector? If not, what's the correct way?
$($(this)+' childElement')....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这可能就是您正在寻找的内容:
基本上,它将在当前元素
this
的上下文中搜索childElement
。有关更多信息,请参阅 jQuery() 函数的文档。特别是,以下摘录解释了第二个参数以及它如何等效于使用
find
:This may be what you are looking for:
Basically it will search for
childElement
within the context of the current element,this
.For more information, see the documentation for the jQuery() function. In particular, the following excerpt explains the second argument and how it is equivalent to using
find
:使用
Use
或者...
$(this).children('.element');
Or...
$(this).children('.element');