jQuery.isEmptyObject()
jQuery.isEmptyObject( object ) 官网原E文: Boolean
描述: 检查对象是否为空(不包含任何属性)。
-
version added: 1.4jQuery.isEmptyObject( object )
object将要检查是否为空的对象。
jQuery 1.4 中,这个方法既检测对象本身的属性,也检测从原型继承的属性(因此没有使用hasOwnProperty)。
Example:
Check an object to see if it's empty.
jQuery.isEmptyObject({}) // true
jQuery.isEmptyObject({ foo: "bar" }) // false