gpt4 book ai didi

Jquery .click() 更胜一筹

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

在我的类的方法中,我有:

this.background.click(function() {
this.terminate();
});

显然 this.terminate(); 不起作用,因为 this 引用 jquery.click< 内的 this.background/ 功能。我该如何编写才能从高级类中获取this

最佳答案

声明一个包含外部this的变量:

var self = this;
this.background.click(function() {
self.terminate();
});

关于Jquery .click() 更胜一筹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8703306/

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