lang/js

js 함수 및 클래스 존재여부 확인

C/H 2010. 10. 29. 08:30
javascript 에서 함수 존재 여부 확인
참고

// instanceof
if(! window.parseUri instanceof Function){
	 $.getScript('/js/parseUri.js');
}

// Prototype
Object.prototype.hasFunction = function(funcName) {
	return this && this.funcName && this.funcName instanceof Function;
}

// new Class
var myObject = new myObject()
if (myObject.hasFunction("getArea")) {
	// to do..
}

// jQuery.isFunction
jQuery.isFunction(fn);


반응형

'lang > js' 카테고리의 다른 글

tag cloud 태그 구름 for jquery  (0) 2010.11.04
javascript parse url  (0) 2010.11.01
javascript 이미지에 그레이스케일(grayscale) 적용  (0) 2010.07.31
javascript object 값 출력  (2) 2010.03.10
동작/조작언어  (0) 2009.04.21