This article analyzes the importance of var in JavaScript with examples. Share it with everyone for your reference. The specific analysis is as follows:
The function of var in JavaScript is to declare variables.
Under normal circumstances, there will be no mistakes if you don’t write, but in some cases, if you don’t write, there will be different results. Let’s take a look at the following example:
<div id="a"></div> <script type="text/javascript"> a = 1; alert(a); </script>
The above example will run without problems in FF Chrome and can output 1. But what about running in IE? Error: "object doesn't support this property or method".
Because the reference of the DOM element can be obtained directly through the id under IE, an error will be reported if a=1, because a at this time is a DOM element with id="a".
If you remove the sentence
, there will be no problem. In order to avoid this kind of conflict, it is recommended that variables must be declared with var.I hope this article will be helpful to everyone’s JavaScript programming design.