Earlier, JavaScript was not very convenient to process, as it was necessary to first obtain the class attribute and then process the string. Now 1. classList attributeFirst look at the following code: <ul class="nav"> <li class="active">Column 1</li> <li>Column 2</li> <li>Column 3</li> </ul> <script type="text/javascript"> // Get the current li element let activeLi = document.querySelector(".active"); // Print classList attribute console.log(activeLi.classList) // Console output: // DOMTokenList ['active', value: 'active'] </script> Console view effect: classList attribute type:
2. Practical Application In practice, column switching is a very common application. Continuing with the above example, when clicking a column, move <ul class="nav"> <li class="item active">Column 1</li> <li class="item">Column 2</li> <li class="item">Column 3</li> </ul> <script type="text/javascript"> let currentElement = document.querySelector(".nav").firstElementChild; // Traverse the li elements and set the click event while (currentElement) { currentElement.onclick = function() { // Remove the active li document.querySelector(".active").classList.remove("active"); // The current li class adds active this.classList.add("active"); } currentElement = currentElement.nextElementSibling; } </script> This makes it very convenient to implement without affecting other class names. This is the end of this article about the detailed explanation of how to use the new method of You may also be interested in:
|
<<: Detailed explanation of some commonly used font-size font units and line-height in CSS
>>: The spacing between multiple divs with inline-block is different from the programming method
Preface MySQL continued to maintain its strong gr...
Configure Git environment in Docker At work, I en...
MySQL advantage: Small size, fast speed, low tota...
symptom I set a crontab task on a centos7 host, b...
Table of contents Mode Parameters HashHistory Has...
Preface Nginx is an HTTP server designed for perf...
This example takes the installation of Python 3.8...
There are significant differences between centos7...
Table of contents 01 Container consistency 02 Con...
Table of contents question background Idea & ...
mysql5.6.28 installation and configuration method...
<br />This tag can be used to directly add a...
Table of contents 1. Hash table principle 2. The ...
I was recently writing a lawyer recommendation we...
1. Review Vue responsive usage Vue responsivenes...