对于 JQuery 来说 $(this).find(e.target) 与 $(e.target, this) 相同

发布于 2024-12-07 07:38:58 字数 184 浏览 0 评论 0原文

JQuery error?

我一直以为是这样,直到我得到上面的内容。我错过了什么吗?

“input#header-login-email-input.initial-value”不在“this”内。

谢谢

JQuery error?

I've always thought it was until I got the above. Am I missing something?

The "input#header-login-email-input.initial-value" is not within "this".

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

娇女薄笑 2024-12-14 07:38:58

我假设 e.targetEvent 对象的 target 属性,因此它是一个 DOM 元素。当您在 DOM 元素上调用 $() 时,它只是将该元素包装在 jQuery 对象中并返回该对象,因此上下文参数 (this) 并不真正起作用任何事物。

I assume e.target is the target property of an Event object, so it's a DOM element. When you call $() on a DOM element, it just wraps the element in a jQuery object and returns that, so the context parameter (this) doesn't really do anything.

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