js通过字符串调用函数

Vue代码片段

funcController:function (e) {
                let funcname=“fabTime”;
                eval("this."+funcname+"()");//方法一
                this[funcname]();                  //方法二
            },
            fabTime:function () {
                alert("fabtime");
            }

你可能感兴趣的:(js通过字符串调用函数)