码迷,mamicode.com
首页 > Web开发 > 详细

js判断是否存在指定变量或函数

时间:2016-06-06 16:17:46      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

//是否存在指定变量
function isExitsVariable(variableName) {
try {
if (typeof(eval(variableName)) == "undefined") {
console.log("已声明变量,但未初始化");
return false;
} else {
console.log("已声明变量,且已经初始化");
return true;
}
} catch(e) {
console.log("未声明变量");
}
return false;
}


//是否存在指定函数 
function isExitsFunction(funcName) {
    try {
        if (typeof(eval(funcName)) == "function") {
            return true;
        }
    } catch(e) {}
    return false;
}

 调用方法:

alert(isExitsVariable(‘xx‘));

var xx;

alert(isExitsVariable(‘xx‘));

var xx = 123;

alert(isExitsVariable(‘xx‘));

js判断是否存在指定变量或函数

标签:

原文地址:http://www.cnblogs.com/zkongbai/p/5563850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!