gpt4 book ai didi

javascript - 如何访问 es6 类构造函数中单击事件的方法?

转载 作者:行者123 更新时间:2023-11-28 18:49:17 25 4
gpt4 key购买 nike

我创建了一个类来管理与我的应用程序的主要 UI 交互。在构造函数中,我想连接导航李的单击事件。有人可以帮我弄清楚如何正确确定这些对象的范围吗?

class app {
constructor() {

$('.nav li').on("click", function() {
// I want to call changeView but pass in the data attribute from the li as the view param
// ex. changeView($(this).data('view'));
});

}

changeView(view) {
console.log(view);
}
}

最佳答案

使用箭头函数:

$('.nav li').on("click", e => {
this.changeView($(e.target).data('view'));
});

关于javascript - 如何访问 es6 类构造函数中单击事件的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34754035/

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