객체가 jQuery 객체인지 확인하는 방법: obj 인스턴스of jQuery 메서드를 사용하여 확인할 수 있으며, 코드는 [if (obj 인스턴스of jQuery){alert("This is a jQuery object");}]입니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, jquery 버전 3.2.1 이 방법은 모든 브랜드의 컴퓨터에 적합합니다.
객체가 jquery 객체인지 확인하는 방법:
jquery의 Each를 사용하여 루프 순회를 수행할 때 종종 이것을 사용하며 때로는 이것이 무엇을 의미하는지 알지 못합니다. jquery의 메서드를 사용하려면 객체가 jquery 객체여야 합니다.
또한, javascript 객체의 유형을 결정하려면 typeof를 사용할 수 있지만 typeof는 js의 기본 객체인 (string, boolean, number, object) <code>(string,boolean,number,object)
.
判断一个对象是否为jquery对象可以用obj instanceof jQuery
obj 인스턴스of jQuery
var obj = $("div"); if (obj instanceof jQuery) { alert("这是一个jQuery对象"); } else { alert("这是一个其它对象") } obj.each(function() { console.log(this instanceof jQuery); //false console.log($(this) instanceof jQuery); //true })를 사용할 수 있습니다. 기타:
🎜관련 무료 학습 권장 사항:JavaScript
(동영상)
위 내용은 객체가 jquery 객체인지 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!