这 vs $(这)

发布于 2024-12-05 10:30:25 字数 282 浏览 1 评论 0原文

可能的重复:
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 技术交流群。

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

发布评论

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

评论(3

叶落知秋 2024-12-12 10:30:25

在 jQuery 函数中,this 通常指的是您正在处理的实际 DOM 元素,而 $(this) 返回包装该元素的 jQuery 对象。

在 JavaScript 中,this 始终指当前作用域。许多 jQuery 函数都会将该范围设置为您正在使用的元素。

例如

$("#someElement").click(function() {
    this;    // the element itself
    $(this); // a jQuery wrapper-object around the element
});

,要点是,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

$("#someElement").click(function() {
    this;    // the element itself
    $(this); // a jQuery wrapper-object around the element
});

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 called document.getElementById("someElement")

眼角的笑意。 2024-12-12 10:30:25

$(this) 指的是 jquery 对象,this 指的是当前范围内的 this

$(this) refers to a jquery object, this refers to this in the current scope

避讳 2024-12-12 10:30:25

$(this) 是一个 jQuery 对象。 this 指的是当前范围内的this 的值。当您想要将触发事件的元素转换为 jQuery 对象时,通常在回调中使用 $(this) 。您可以对几乎任何 DOM 元素执行此操作,因此 $(document.getElementById("#myElement")) 也是有效的,并且是一个 jQuery 对象,表示 id 为“myElement”的 DOM 元素。

$(this) is a jQuery object. this refers to the value of this 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".

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