gpt4 book ai didi

javascript - 如何使用参数值调用函数?

转载 作者:行者123 更新时间:2023-11-29 10:47:00 25 4
gpt4 key购买 nike

有什么方法可以使用传递的参数在javascript中调用函数。

例如:

var Animal = (function(){
function Animal(type){
this.type(); eg this.snake(); if the parameter type is "snake"
}
return Animal;
})();

var animal = new Animal("snake");

谢谢!

最佳答案

Javascript 对象属性类似于 associative arrays所以 this.a == this['a']

   var Animal = (function(){
function Animal(type){
this[type](); //eg this.snake(); if the parameter type is "snake"
}
return Animal;
})();

关于javascript - 如何使用参数值调用函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17760362/

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