mv-JQ源码学习

19

isPlainObject(): 是否为对象自变量

  • 如何使用

// 如果是{}或者_new Object(),返回true
$.isPlainObject(obj);
  • 如何实现

// 判断是否在自身原型上有isPrototypeOf属性
core_hasOwn.call(obj.constructor.prototype,"isPrototypeOf");

isEmptyObject(): 是否为空的对象

  • 如何使用

// 如果是[],{}或者空的构造函数,返回true
$.isEmptyObject(obj)
  • 如何实现

for( name in obj ){
    return false;
}

构造函数会自动生成:Aaa.prototype.constructor = Aaa;
但是用for in是遍历不到的

    原文作者:繁忙的耗子
    原文地址: https://segmentfault.com/a/1190000008259532
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞