gpt4 book ai didi

javascript - 在 Javascript 中调用方法

转载 作者:行者123 更新时间:2023-11-28 20:43:40 25 4
gpt4 key购买 nike

我对 Javascript 完全陌生,这看起来应该很简单,但我不明白为什么我的代码不起作用。这是我遇到的问题的示例:

//Thing constructor
function Thing() {
function thingAlert() {
alert("THING ALERT!");
}
}

//Make a Thing
var myThing = new Thing();

//Call thingAlert method
myThing.thingAlert();

创建了一个对象,但我无法调用它的任何方法。为什么在这个例子中,thingAlert() 没有被调用?

最佳答案

//Thing constructor
function Thing() {
this.thingAlert = function() {
alert("THING ALERT!");
};
};
// you need to explicitly assign the thingAlert property to the class.
//Make a Thing
var myThing = new Thing();

//Call thingAlert method
myThing.thingAlert();

关于javascript - 在 Javascript 中调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13861762/

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