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
//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)
//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)
//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.

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

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

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

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

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

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

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

防挡脸弹幕,即大量弹幕飘过,但不会遮挡视频画面中的人物,看起来像是从人物背后飘过去的。机器学习已经火了好几年了,但很多人都不知道浏览器中也能运行这些能力;本文介绍在视频弹幕方面的实践优化过程,文末列举了一些本方案可适用的场景,期望能开启一些脑洞。mediapipeDemo(https://google.github.io/mediapipe/)展示主流防挡脸弹幕实现原理点播up上传视频服务器后台计算提取视频画面中的人像区域,转换成svg存储客户端播放视频的同时,从服务器下载svg与弹幕合成,人像


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment
