这 vs $(这)
可能的重复:
jQuery $(this) 与 this
我对此很陌生,并试图正确理解我的概念。有很多使用“this
”和“$(this)
”的实例。有人可以解释一下区别以及我们在什么情况下使用两个不同的“this”吗?
Possible Duplicate:
jQuery $(this) vs this
I'm new to this and trying to get my concept right. There has been many instances of the use of "this
" and "$(this)
". Can someone please explain the difference and in what condition that we use the two different "this"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 jQuery 函数中,
this
通常指的是您正在处理的实际 DOM 元素,而$(this)
返回包装该元素的 jQuery 对象。在 JavaScript 中,
this
始终指当前作用域。许多 jQuery 函数都会将该范围设置为您正在使用的元素。例如
,要点是,jQuery 对象具有所有 jQuery 函数(如
.detatch()
或.prependTo()
等),而 DOM 元素就是浏览器提供。在上面的示例中,如果您调用document.getElementById("someElement")
,该元素将与您获得的元素完全相同In jQuery functions,
this
most often refers to the actual DOM element you're dealing with, whereas$(this)
returns a jQuery object that wraps the element.In JavaScript,
this
always refers to the current scope. Many of jQuery's functions will set that scope to be the element you're working with.For instance
The point is, that the jQuery object has all the jQuery functions (like
.detatch()
or.prependTo()
etc.), while the DOM element is what the browser provides. In the example above, the element would be exactly the same as what you'd get, if you calleddocument.getElementById("someElement")
$(this)
指的是 jquery 对象,this
指的是当前范围内的this
$(this)
refers to a jquery object,this
refers tothis
in the current scope$(this)
是一个 jQuery 对象。this
指的是当前范围内的this
的值。当您想要将触发事件的元素转换为 jQuery 对象时,通常在回调中使用$(this)
。您可以对几乎任何 DOM 元素执行此操作,因此$(document.getElementById("#myElement"))
也是有效的,并且是一个 jQuery 对象,表示 id 为“myElement”的 DOM 元素。$(this)
is a jQuery object.this
refers to the value ofthis
within the current scope. You typically use$(this)
inside a callback when you want to convert the element that triggered the event, into a jQuery object. You can do this to pretty much any DOM element, so$(document.getElementById("#myElement"))
is also valid, and is a jQuery object that represents the DOM element with id "myElement".