什么是PlainObject

The PlainObject type is a JavaScript object containing zero or more key-value pairs.

这是jQuery的官方定义:含有零个或多个的key/value对


The jQuery.isPlainObject() method identifies whether the passed argument is a plain object or not, as demonstrated below:

var a = [];
var d = document;  
var o = {};   
typeof a; // object  
typeof d; // object  
typeof o; // object   
jQuery.isPlainObject( a ); // false  
jQuery.isPlainObject( d ); // false  
jQuery.isPlainObject( o ); // true





你可能感兴趣的:(什么是PlainObject)