判断jsp中是否存在某个javascript函数

//判断父页是否存在某个javascript函数
    function fnExist(fnName) {  
        //return fnName in this && eval(fnName) instanceof Function;  
        return fnName in this && typeof (eval(fnName)) == "function";  
    }  

返回结果为  true  false

//重载thickbox方法,实现刷新页面
    function tb_remove() {
         
        if(fnExist("selectDepartment") == true) {
            selectDepartment();
        }
        
    }

 

posted @ 2013-08-08 14:51  东师理想--周枫  阅读(447)  评论(0编辑  收藏  举报