gpt4 book ai didi

javascript - 在字符串上调用函数(Javascript)

转载 作者:行者123 更新时间:2023-11-28 13:24:21 25 4
gpt4 key购买 nike

如何直接在字符串上调用函数?

var test = function(x){
console.log(x);
};

test();
**上面的记录应该是“未定义”。

如果我尝试:

"test".test();

我得到:

"error"
"TypeError: \"test\".test is not a function.

但是 test 是一个函数。所以即使我尝试:

var example = "test";

example.test();

我得到:

"error"
"TypeError: example.test is not a function

非常感谢任何帮助。

最佳答案

为了稍微扩展一下其他答案,您创建了一个名为 test() 的函数,但该函数不属于任何对象,也不属于任何字符串。您尚未为字符串定义名为 test() 的函数,因此会出现错误。

为此,您可以尝试以下操作:

String.prototype.test = function() {
console.log(this);
};
"hello".test();

阅读here在原型(prototype)上。本质上,JavaScript 中的对象具有属性和方法,它们也具有其原型(prototype)的属性和方法。

关于javascript - 在字符串上调用函数(Javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30315272/

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