search
HomeWeb Front-endJS TutorialHow to use JavaScript for loop in multiple browsers_javascript skills

1. Foreword
The JavaScript language has slight differences in different browsers, but it is not as big as the difference in DOM operations. Now I will list one of the differences in "for loop" for you. And introduce how to effectively resolve this difference.

2. Problem Description
In the following test code example 1, the output results of IE6 and Chrome are inconsistent. IE6 does not execute the code in the for statement
Copy code The code is as follows:

//Example 1:
alert("Prepare to test whether toString is in a for loop Enumerated out")
var forTest = { toString: 1 }
for (i in forTest) {
alert("toString is looped out")//This is not executed under IE6, but Execute in Chrome and output the result value "1"
}

3. Analysis problem
Objects in JavaScript contain 'toString', 'valueOf', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'hasOwnProperty', 'constructor' are seven built-in methods. These seven built-in methods cannot be enumerated using the for statement. But IE6 and Chrome have inconsistent support for built-in method overrides.
IE6: Although its built-in override method can be used, the FOR loop cannot be enumerated.
Chrome: You can override its built-in methods, and the FOR loop can also enumerate the overridden built-in methods.
So the output results of IE6 and Chrome browsers in the above test code example 1 are inconsistent

4. Solve the problem
To solve the problem described above, we need to do two things Things:
Whether the browser used by the user supports FOR loops to enumerate overridden built-in methods
How to elegantly solve the incompatibility problem so that all browsers can FOR loops to enumerate overridden built-in methods
(Solution code example 2)
Copy code The code is as follows:

//Example 2 :
enumerables = true,
forTest = { toString: 1 }
for (i in forTest) {
enumerables = null;
}
if (enumerables) {//These They are all properties of the Object object. The for loop of some browsers (ie6) will not traverse these properties, so you have to manually traverse the properties
enumerables = ['hasOwnProperty', 'valueOf', ' isPrototypeOf', 'propertyIsEnumerable',
'toLocaleString', 'toString', 'constructor'];
}

//If enumerables is null, the browser supports the built-in method of enumeration override, Otherwise, you can only force the built-in method to be copied to the new object as shown in the following code.
/**
* Copy all attributes to the specified object
* @param {Object} object object to be merged
* @param {Object} config source attribute
* @return {Object} return the merged Object
*/
function apply(object, config) {
if (object && config && typeof config === 'object') {
var i, j, k ;
//The normal method of copying objects here
for (i in config) {
object[i] = config[i];
}
//Compatible with multiple browsers Built-in properties can be copied into new objects
if (enumerables) {
for (j = enumerables.length; j--;) {
k = enumerables[j];
if (config.hasOwnProperty(k)) {//Determine whether the object has a specific attribute. This property must be specified as a string. (For example, config.hasOwnProperty("toString"))
object[k] = config[k];
}
}
}
}
return object;
};

Now write some test codes to verify our results (test code example 3)
Copy the code The code is as follows:

//Example 3:
var a={};
for (i in forTest) {
a[i] = forTest[ i];
}
alert(a.toString) //If the copy fails under ie6, you can only enter "native code", not the value we overwrote.
var b=apply({},forTest)
alert(b.toString)//Using the apply function, the values ​​output in IE6 and Chrome are the coverage value we expect "1"

5. Summary
The author guesses that the for statement in IE6 marks those 7 built-in functions into the ignore list, so they cannot be enumerated in for no matter how they are overwritten, and Chrome can intelligently copy the overwritten built-in functions.
Use the apply function in Solution Code Example 2 to solve the problem of for loop inconsistency in multiple browsers.
The author is a rookie and rarely writes blogs. If I express my views incorrectly or make clerical errors, please be willing to ask the experts to correct them.

6. Frequently Asked Questions
Q: Why not first determine whether the browser version is IE6, and then set the corresponding enumeration scheme?
A: My personal point of view is that I am not sure there are so many browsers in the market (there are N browsers for PCs, as well as mobile browsers, and I don’t know what new versions of browsers will be available in the future). What mechanism is used for the for statement? So let’s test the mechanism of the for statement first.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
火狐浏览器是哪个国家的火狐浏览器是哪个国家的Sep 15, 2022 pm 02:55 PM

火狐浏览器是“美国”的。Firefox火狐浏览器是开源基金组织Mozilla研发的一个自由及开放源代码的网页浏览器;而Mozilla基金会成立于2003年7月,是一家美国公司,现位于美国加利福尼亚州的芒廷维尤。

电脑浏览器打不开网页但能上网怎么解决电脑浏览器打不开网页但能上网怎么解决Jun 28, 2023 am 11:26 AM

电脑浏览器打不开网页但能上网解决方法:1、网络设置问题,将路由器断电并等待几分钟,然后再重新插上电源;2、浏览器设置问题,清除浏览器缓存和浏览历史记录,确保浏览器没有设置代理服务器或虚拟专用网络;3、DNS设置问题,将DNS设置更改为公共DNS服务器地址;4、杀毒软件或防火墙问题,禁用杀毒软件或防火墙,再尝试打开网页;5、网页本身的问题,等待一段时间或联系网站管理员了解情况。

教你如何强制卸载edge浏览器教你如何强制卸载edge浏览器Jul 15, 2023 pm 06:17 PM

Windows10自带的Edge浏览器在程序面板上是不能被卸载的,但是有些网友不喜欢使用edge浏览器,想要卸载掉它。那么我们可以尝试如何卸载edge浏览器呢?下面小编就教下大家强制卸载edge浏览器的方法。具体的方法如下:1、右击左下角开始,点击“windowspowershell(管理员)”打开。2、进入命令界面,输入代码get-appxpackage*edge*,查找edge包。3、在edge包中找到packagefullname,选中并复制。4、接着输入命令Remove-appxpack

如何修复 Microsoft Edge 浏览器中的黑屏问题如何修复 Microsoft Edge 浏览器中的黑屏问题May 16, 2023 am 10:04 AM

微软于2020年初发布了基于Chromium(谷歌的开源引擎)的NewEdge版本。新Edge的感觉与谷歌Chrome相似,并且具有Chrome中可用的功能。但是,许多用户报告说他们在启动MicrosoftNewEdge后立即看到黑屏。用户可以访问设置菜单,但是当他们单击菜单中的任何选项时,它不起作用,只有黑屏可见。当计算机鼠标悬停在选项上并且用户可以关闭浏览器时,它会突出显示选项。在PC上打开新的Edge浏览器时是否遇到黑屏?那么这篇文章将对你有用。在这篇文章中,

如何禁止 Outlook 在 Edge 浏览器中打开链接如何禁止 Outlook 在 Edge 浏览器中打开链接Aug 03, 2023 am 11:49 AM

如何阻止Outlook在Edge中打开链接在继续之前,请确保您的首选浏览器在Windows中设置为默认浏览器。这可确保在所需的浏览器中打开Outlook链接。要检查并设置默认浏览器:对于Windows10:单击“开始”菜单,然后选择“设置”转到“应用程序”,然后转到“默认应用程序”在默认应用程序列表的底部查找“Web浏览器”如果列出了您的首选浏览器,则一切就绪。如果列出了MicrosoftEdge,请单击它,然后从列表中选择您喜欢的浏览器。如果出现提示,请单击“仍然切换”。修复Edge问题中Ou

简化三步骤,轻松删除Microsoft Edge中的边框简化三步骤,轻松删除Microsoft Edge中的边框Sep 02, 2023 pm 02:57 PM

许多用户对MicrosoftEdge中网页周围的白色边框不满意。他们认为这是不必要的和分散注意力的,他们要求Microsoft完全删除MicrosoftEdge的边框。这类似于“不要修复没有损坏的东西”的说法,但Microsoft似乎没有考虑到这一点。当然,它是一种流行的网络浏览器,提供多种功能,包括内置广告拦截器、跟踪预防和密码管理器。但是,某些用户可能会发现浏览器在网页周围有边框。此边框可能会分散注意力或难看,有几种方法可以将其删除。在关于r/Edge的冗长对话中,一些普通的非内部用户发现,

edge是什么浏览器edge是什么浏览器Jul 19, 2022 pm 12:41 PM

edge是由微软开发的基于Chromium开源项目及其他开源软件的网页浏览器。Edge浏览器主要特点是能够支持目前主流的Web技术,作为Windows10自带浏览器,给微软用户带来更好的功能体验。

苹果自带的浏览器叫什么苹果自带的浏览器叫什么Jul 18, 2022 am 10:42 AM

苹果自带的浏览器叫“Safari”;Safari是一款由苹果公司开发的网页浏览器,是各类苹果设备的默认浏览器,该浏览器使用的是WebKit浏览器引擎,包含WebCore排版引擎及JavaScriptCore解析引擎,在GPL条约下授权,同时支持BSD系统的开发。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.