gpt4 book ai didi

javascript - 如何将事件传递到 lambda 函数

转载 作者:行者123 更新时间:2023-12-01 01:51:55 26 4
gpt4 key购买 nike

当我创建事件监听器时,我不知道如何将事件传递到调用的函数中。

class Clickable
{
constructor()
{
document.addEventListener('mousedown', () => this.action());
}

action(mouseEvent)
{
console.log(mouseEvent); //Undefined
}
}

最佳答案

只需将 事件mousedown 监听器传递给函数,如下所示:

class Clickable {
constructor() {
document.addEventListener('mousedown', (e) => this.action(e));
}
action(mouseEvent) {
console.log(mouseEvent);
}
}

关于javascript - 如何将事件传递到 lambda 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51413162/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com