当前位置:Gxlcms > JavaScript > js 判断js函数、变量是否存在的简单示例代码

js 判断js函数、变量是否存在的简单示例代码

时间:2021-07-01 10:21:17 帮助过:2人阅读

核心代码

//是否存在指定函数 
function isExitsFunction(funcName) {
  try {
    if (typeof(eval(funcName)) == "function") {
      return true;
    }
  } catch(e) {}
  return false;
}
//是否存在指定变量 
function isExitsVariable(variableName) {
  try {
    if (typeof(variableName) == "undefined") {
      //alert("value is undefined"); 
      return false;
    } else {
      //alert("value is true"); 
      return true;
    }
  } catch(e) {}
  return false;
}

更多的判断可以参考这篇文章://www.gxlcms.com/article/67551.htm

人气教程排行