gpt4 book ai didi

jquery - 使用什么来代替 Object.keys()?

转载 作者:行者123 更新时间:2023-12-03 22:47:03 25 4
gpt4 key购买 nike

我需要在 Jquery 中找到一些可以在 IE8 和真实浏览器中工作的东西。我是 Jquery 的新手,以下是我在现代浏览器中运行的代码:

$('#FIELD_'+office_id).on('change',function(){
offices = $(this).val();
for(var i=0; i<=Object.keys(southland.address).length;i++){
if(offices == Object.keys(southland.address)[i]){
address = southland.address[offices]Object.keys(southland.address[offices])[0]];
}
}

其中 Southland.address 来自外部数组。这在 Chrome、IE10 和 FF 中完美运行,我能为 IE8 做什么?

最佳答案

要在旧版浏览器中支持 Object.keys,您可以使用以下代码段:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys#Compatibility

if (!Object.keys) {
Object.keys = (function () {
var hasOwnProperty = Object.prototype.hasOwnProperty,
hasDontEnumBug = !({toString: null}).propertyIsEnumerable('toString'),
dontEnums = [
'toString',
'toLocaleString',
'valueOf',
'hasOwnProperty',
'isPrototypeOf',
'propertyIsEnumerable',
'constructor'
],
dontEnumsLength = dontEnums.length;

return function (obj) {
if (typeof obj !== 'object' && typeof obj !== 'function' || obj === null) throw new TypeError('Object.keys called on non-object');

var result = [];

for (var prop in obj) {
if (hasOwnProperty.call(obj, prop)) result.push(prop);
}

if (hasDontEnumBug) {
for (var i=0; i < dontEnumsLength; i++) {
if (hasOwnProperty.call(obj, dontEnums[i])) result.push(dontEnums[i]);
}
}
return result;
};
})();
}

或者这个polyfill(也包括其他垫片):

https://github.com/kriskowal/es5-shim/

关于jquery - 使用什么来代替 Object.keys()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17818430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com