码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-10 20:49:45      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:called   res   原型   支持   asd   span   led   .property   string   

 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

标签:called   res   原型   支持   asd   span   led   .property   string   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!