Javascript从字符串动态调用对象方法

Javascript从字符串动态调用对象方法

本文介绍了Javascript从字符串动态调用对象方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以动态调用方法名称为字符串的对象方法吗?我会想象它是这样的:

Can I dynamically call an object method having the method name as a string? I would imagine it like this:

var FooClass = function() {
    this.smile = function() {};
}

var method = "smile";
var foo = new FooClass();

// I want to run smile on the foo instance.
foo.{mysterious code}(); // being executed as foo.smile();


推荐答案

如果属性的名称存储在变量中,使用 []

if the name of the property is stored in a variable, use []

foo[method]();

这篇关于Javascript从字符串动态调用对象方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 22:56