gpt4 book ai didi

javascript - 从另一个范围调用函数

转载 作者:行者123 更新时间:2023-11-30 12:20:05 24 4
gpt4 key购买 nike

我在 javascript 中有以下功能:

function jsController() {
this.foo = function() {
$("body").click(function() {
$(this).externalFunction();
}
};
this.externalFunction = function() {
alert('a');
};
}

但是它不起作用,它说 externalFunction() 未定义。

我该如何解决这个问题?

最佳答案

在这种情况下:$(this).externalFunction() this 对象的作用域为 $("body") 元素.解决方法:

function jsController() {
var self = this;
this.foo = function() {
$("body").click(function() {
self.externalFunction();
}
};
this.externalFunction = function() {
alert('a');
};
}

关于javascript - 从另一个范围调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31405508/

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