gpt4 book ai didi

javascript - 在父函数方法中获取子函数名

转载 作者:行者123 更新时间:2023-11-29 22:14:09 38 4
gpt4 key购买 nike

函数 B 扩展 A,当我在 B 子函数对象的对象上调用 parentMethod() 时,如何在父函数 A 中获取 B 函数名称。

function A() {

this.parentMethod = function() {
//alert('display B function name');
}
}

function B() {


}


B.prototype = new A();

var b = new B();
b.parentMethod();

最佳答案

最简单的方法是:

function A() {

this.parentMethod = function() {
alert(this.constructor.name);
}
}

function B() {

}


B.prototype = new A();
B.prototype.constructor = B; //Add this line.

var b = new B();
b.parentMethod();

现在,当您调用 parentMethod 时,它将显示 B 作为构造函数名称。

关于javascript - 在父函数方法中获取子函数名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16214795/

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