Heim  >  Artikel  >  Web-Frontend  >  JavaScript中判断函数、变量是否存在_javascript技巧

JavaScript中判断函数、变量是否存在_javascript技巧

WBOY
WBOYOriginal
2016-05-16 15:56:181726Durchsuche

一、是否存在指定函数

复制代码 代码如下:

function isExitsFunction(funcName) {
    try {
        if (typeof(eval(funcName)) == "function") {
            return true;
        }
    } catch(e) {}
    return false;
}

二、类似PHP常用的判断函数是否存在,不存在则创建

复制代码 代码如下:

if (typeof String.prototype.endsWith != 'function') {
  String.prototype.endsWith = function(suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
  };
}

三、判断js函数是否存在,如果存在则执行

假设funcName为函数名字,用如下方法就可以达到目标

一定要添加try catch块,否则不起作用。

复制代码 代码如下:

try

  if(typeof(eval(funcName))=="function") 
  {
      funcName();
  }
}catch(e)
{
//alert("not function");


四、是否存在指定变量
复制代码 代码如下:

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;
}
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn