JS如何判斷函數、變量是否存在?
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
:JS如何判斷函數、變量是否存在? 使用 typeof //是否存在指定函數 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; }
該文章在 2024/12/19 10:33:19 編輯過 |
關鍵字查詢
相關文章
正在查詢... |