jQuery.isPlainObject() 함수는 지정된 매개변수가 순수 객체인지 확인하는 데 사용됩니다.
소위 "순수 객체"란 "{}" 또는 "새 객체"를 통해 객체가 생성된다는 의미입니다.
이 함수는 전역 jQuery 개체에 속합니다.
Syntax
jQuery.isPlainObject( object )
Parameters
Parameters
Description
object 판단해야 하는 모든 유형의 값입니다.
참고: 호스트 개체(또는 ECMAScript 실행 환경을 완성하기 위해 브라우저 호스트 환경에서 사용하는 기타 개체)는 크로스 플랫폼 기능 감지를 수행하기 어렵습니다. 따라서 $.isPlainObject()는 이러한 개체의 인스턴스에 대해 브라우저마다 다른 결과를 제공할 수 있습니다.
반환 값
jQuery.isPlainObject()함수의 반환 값은 Boolean 유형입니다. 지정된 매개변수가 순수 객체이면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
예제 및 설명
jQuery.isPlainObject() 함수에 대한 jQuery 샘플 코드는 다음과 같습니다.
//在当前页面内追加换行标签和指定的HTML内容 function w( html ){ document.body.innerHTML += "<br/>" + html; } w( $.isPlainObject( { } ) ); // true w( $.isPlainObject( new Object() ) ); // true w( $.isPlainObject( { name: "CodePlayer"} ) ); // true w( $.isPlainObject( { sayHi: function(){} } ) ); // true w( $.isPlainObject( "CodePlayer" ) ); // false w( $.isPlainObject( true ) ); // false w( $.isPlainObject( 12 ) ); // false w( $.isPlainObject( [ ] ) ); // false w( $.isPlainObject( function(){ } ) ); // false w( $.isPlainObject( document.location ) ); // false(在IE中返回true) function Person(){ this.name = "张三"; } w( $.isPlainObject( new Person() ) ); // false
위 내용은 jQuery.isPlainObject() 함수 사용법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!