gpt4 book ai didi

javascript - 从函数内部调用函数?

转载 作者:太空宇宙 更新时间:2023-11-04 15:47:38 25 4
gpt4 key购买 nike

我有以下代码:

var A = function (id) {
var elem = document.getElementById(id);
function text () {
return "Hello world";
}
this.other = function(){
console.log(text());
}
}

如果我想从外部添加 other 函数并仍然调用 text() 函数,如下所示:

(function(A){
A.prototype.other = function() {
console.log(text());
}
})(A);

有什么办法可以做到这一点吗?我的意思是无需将 function text(){} 更改为 this.text=function(){}

最佳答案

您可以将 text() 方法附加到仍然是一个对象的 A 函数,然后在 A.prototype.other 中使用它,例如这个。

var A = function(id) {
this.id = id;
}
A.text = function() {
return "Hello world";
}
A.prototype.other = function() {
return this.id + ' ' + A.text();
}

var a = new A(123);
console.log(a.other())

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

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