「这个」 jquery 代码中的含义
我很抱歉问这个问题,但是这段代码中的“this”是什么意思?
(它是在 jQuery 中)。
var icon = $('.icon', this);
i am sorry because of asking this question,but what does 'this' mean in this code?
(it is in jQuery).
var icon = $('.icon', this);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的理解是,它会做类似的事情:
也就是说,它会找到“this”的所有子级与选择器匹配。例如,它可以用作:
相当于:
My understanding is that it will do something similar to:
That is, it will find all children of 'this' matching the selector. For example, it could be used as:
As an equivalent to:
this
是上下文或简单的父元素:这里
this
指的是包含类为icon
的元素的元素。你也可以这样写:
事实上你已经粘贴了部分代码,这里是一个例子:
在上面的代码中,
this
引用了id为someID
的元素。您可以在此处获取更多信息:
this
is context or simply parent element:Here
this
refers to the element which contains the element(s) with class oficon
.You can also write it like this:
In fact you have pasted in partial code, here is an example:
In the above code,
this
refers to element with idsomeID
.You can get more info here: