addEventListener:如何访问事件

发布于 2024-12-05 15:32:51 字数 293 浏览 2 评论 0原文

对于以下示例,我有两个问题:

function doIt(){
  this.attribute = someValue; // Works as expected
  alert(event.which); // Doesn't work
}
element.addEventListener("click",doIt,false);

问题 1:为什么 this 绑定到函数,而 event 没有绑定?
问题 2:执行此操作的适当方法是什么?

I have two questions for the following example:

function doIt(){
  this.attribute = someValue; // Works as expected
  alert(event.which); // Doesn't work
}
element.addEventListener("click",doIt,false);

Question 1: Why is this bound to the function but event is not?
Question 2: What would be the appropriate way to do this?

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

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

发布评论

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

评论(1

七堇年 2024-12-12 15:32:51

this 是 JavaScript 的内置函数。它总是可以访问的。 事件不是。仅当当前方法支持时才可用。

您需要有类似

function doIt(event)

“这是什么”的内容? - http://howtonode.org/what-is-this

this is a built-in for JavaScript. It is always accessible. event is not. It is only available if the current method supports it.

You would need to have something like

function doIt(event)

What is this? - http://howtonode.org/what-is-this

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