`
rantengfei1986
  • 浏览: 4563 次
  • 性别: Icon_minigender_1
  • 来自: 兰州
文章分类
社区版块
存档分类
最新评论

JS根据变量保存方法名并执行方法

 
阅读更多
function a(){
    alert("fun a()");
}
function b(){
    alert("fun b()");
}
var methodName = "";
//method1
methodName = "a";
function method1(methodName){
    //初始化this.func属性,
    this.func = function(){};
    try{
        //这里用eval方法,把我们传进来的这个方法名所代表的方法当作一个对象来赋值给method1的func属性。
        //如果找不到methodName这个对应的对象,则eval方法会抛异常
        this.func = eval(methodName);
    }catch(e){
        alert(methodName+"()不存在!");
    }
}
var c = new m(methodName);
c.func();

/**
 * method2, 比较简洁
 */
 methodName = "b";
 function method2(methodName){
    this.func = new Function(methodName+"();");
}
var c = new m(methodName);
try{
    c.func();
}catch(e){
    Ext.Msg.alert(methodName+"()不存在!");
}

分享到:
评论
Global site tag (gtag.js) - Google Analytics