First point
//Efficient and simple //Low energy consumptionchildren //childNodes childElementCount // firstElementChild //firstChild lastEelmentChild //lastChild nextElementSibling //nextSibling previousElementSibling //previousSibling
The second point: efficient application of selectors
<div > <a href="/">I</a><a href="/">联系I们</a><a href="/about/">Advertising Services</a><a href="/about/">Talent Service</a>&copy;2006-2016 <a href="https:///">I</a></div>
var aArr1= ("#footer_bottom a");//Simple and efficientvar aArr2 = ("footer_bottom").getElementsByTagName("a");//Inefficient //return <a href="/">I</a>, <a href="/">联系I们</a>, <a href="/about/">Advertising Services</a>, <a href="/about/">Talent Service</a>, //Select the first child nodevar a = ("#footer_bottom a"); //return <a href="/">I</a> //Select multiple nodesvar divs = (",,");
Note: Most browsers support the above attributes, IE6, 7, 8 only support children attributes
Reduce DOM re-rendering and typography (three ways)
1. First hide the element to be processed, then process it, and finally display it
2. How to create file fragments (recommended) ();
3.Clone a copy of the element to be processed, then operate on the copy, and finally replace the copy with the original copy
Below is my editor's addition
Store looped objects
Before use:
var str = "nanananana"; for (var n = 0; n < ; n++) {}
After use:
var str = "nanananana", strLgth = ; for (var n = 0; n < strLgth ; n++) {}
Loops consume a lot of performance, storing the loop objects, reducing the need to calculate the object in each loop.
Minimize Reduced Reflow and Repaint
Before use:
var coored = ("ctgHotelTab"); ("ctgHotelTab"). = + 35 + "px";
After use:
var coored = ("ctgHotelTab"), offetTop = + 35; ("ctgHotelTab"). = offetTop + "px";