判断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();
} }
上一篇:P1030 求先序排列 (一个非常棒的写法)


下一篇:Intellij IDEA中部署Tomcat报错“war exploded: Server is not connected. Deploy is not available”