首页 > 其他 > 详细

在原生不支持的旧环境中添加兼容的 Object.keys

时间:2017-09-10 20:37:41      阅读:284      评论:0      收藏:0      [点我收藏+]
 1 if (!Object.keys) {
 2   Object.keys = (function () {
 3     var hasOwnProperty = Object.prototype.hasOwnProperty, //原型上的方法,只取自身有的属性;
 4         hasDontEnumBug = !({toString: null}).propertyIsEnumerable(‘toString‘), //ie6一下,!之后的内容为false;
 5         dontEnums = [
 6           ‘toString‘,
 7           ‘toLocaleString‘,
 8           ‘valueOf‘,
 9           ‘hasOwnProperty‘,
10           ‘isPrototypeOf‘,
11           ‘propertyIsEnumerable‘,
12           ‘constructor‘
13         ],
14         dontEnumsLength = dontEnums.length;
15 
16     return function (obj) {
17       if (typeof obj !== ‘object‘ && typeof obj !== ‘function‘ || obj === null) throw new TypeError(‘Object.keys called on non-object‘);
18 
19       var result = [];
20 
21       for (var prop in obj) {
22         if (hasOwnProperty.call(obj, prop)) result.push(prop);
23       }
24 
25       if (hasDontEnumBug) {
26         for (var i=0; i < dontEnumsLength; i++) {
27           if (hasOwnProperty.call(obj, dontEnums[i])) result.push(dontEnums[i]);
28         }
29       }
30       return result;
31     }
32   })()
33 };

 

在原生不支持的旧环境中添加兼容的 Object.keys

原文:http://www.cnblogs.com/chen-sw/p/7501956.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!