对于 JQuery 来说 $(this).find(e.target) 与 $(e.target, this) 相同
我一直以为是这样,直到我得到上面的内容。我错过了什么吗?
“input#header-login-email-input.initial-value”不在“this”内。
谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设
e.target
是Event
对象的 target 属性,因此它是一个 DOM 元素。当您在 DOM 元素上调用$()
时,它只是将该元素包装在 jQuery 对象中并返回该对象,因此上下文参数 (this
) 并不真正起作用任何事物。I assume
e.target
is the target property of anEvent
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.