gpt4 book ai didi

javascript - 使用 JavaScript 对象调用另一个文件中的 JavaScript 函数

转载 作者:行者123 更新时间:2023-12-03 04:40:14 24 4
gpt4 key购买 nike

我想从另一个 JavaScript 文件调用一个 JavaScript 函数

下面是我的代码:

 var exJS = function () {
function coolMethod() {
alert("hello suraj");
}
}

当我调用该函数时

var myClass = new exJS();
myClass.coolMethod();

为什么我会收到 coolmethod 未定义的错误?

最佳答案

为了能够从外部访问它,您需要使用父函数的 this 引用来定义子函数,如下所示:

var exJS = function() {
this.coolMethod = function() {
alert("hello suraj");
}
}

var myClass = new exJS();
myClass.coolMethod();

关于javascript - 使用 JavaScript 对象调用另一个文件中的 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43123303/

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