In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly explains "javascript how to optimize DOM", the explanation content in the article is simple and clear, easy to learn and understand, please follow the idea of Xiaobian slowly in-depth, together to study and learn "javascript how to optimize DOM"!
1. When modifying Dom styles, all modifications should be combined as much as possible and processed at once to reduce the number of rearrangements and rearrangements.
//optimization before const el = document.getElementById('test'); el.style.borderLeft = '1px'; el.style.borderRight = '2px'; el.style.padding = '5px'; //After optimization, modify the style once, so that three rearrangements can be reduced to one rearrangement const el = document.getElementById ('test '); el.style.cssText +='; border-left: 1px ;border-right: 2px; padding: 5px;'
2. When modifying DOM nodes in batches, you can hide DOM nodes, then perform a series of modification operations, and then set them to visible.
//const ele = document.getElementById ('test '); //a series of dom modification operations //Optimization Scheme 1: Set the node to be modified to not be displayed, modify it later, and display the node after the modification is completed, so that only two rearrangement const ele = document.getElementById ('test '); ele.style.display ='none'; //a series of dom modification operations ele.style.display ='block '; //Optimization scheme 2: First create a document fragment (documentFragment), then modify the fragment, and then insert the document fragment into the document. Only when the document fragment is finally inserted into the document will it cause rearrangement, so only one rearrangement will be triggered. const fragment = document.createDocumentFragment(); const ele = document.getElementById ('test '); //a series of dom modification operations ele.appendChild(fragment); Thank you for reading, the above is the "javascript how to optimize DOM" content, after learning this article, I believe that we have a deeper understanding of how to optimize DOM javascript this problem, the specific use of the situation also needs to be verified by practice. Here is, Xiaobian will push more articles related to knowledge points for everyone, welcome to pay attention!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.