지정된 함수가 존재하는지 여부
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; }
혼합 코드:
//是否存在指定函数 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; }
위 내용은 JavaScript에서 함수와 변수의 존재를 확인하는 방법에 대한 예제 코드에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!