JavaScript中判斷函數、變數是否存在的方法:1、判斷是否有指定函數,程式碼為【if (typeof(eval(funcName)) == "function")】;2、判斷是否存在指定變數。
本教學操作環境:windows7系統、javascript1.8.5版,DELL G3電腦。
JavaScript中判斷函數、變數是否存在的方法:
一、是否存在指定函數
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; }
一般情況下,我們單獨判斷變數是否存在都是用
if("undefined" != typeof downlm){ if(downlm=="soft"){ document.write('成功'); } }
#相關免費學習推薦:javascript(影片)
以上是JavaScript中如何判斷函數、變數是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!