1. this keyword
This in the global function points to the window object
function fn() { consolo.log(this); } fn() This in the tag event attribute points to the window object
<button onclick="fn()">Click me to try</button> function fn() { console.log(this) } This in the event attribute function points to the label of the current operation
<button id="btn">Click me to try</button> var btn = document.getElementById('btn'); btn.onclick = function() { console.log(this); } 2. Custom attributes
var btn = document.getElementById('btn'); btn.index = 1; 3. Comprehensive case 1: implementation of tab
var uli = document.querySelector('ul').querySelectorAll('li'); var oli = document.querySelector('ol').querySelectorAll('li');
for (var i = 0; i < uli.length; i++) { uli[i].addEventListener('click', function () { } ) }
uli[i].index = i;
for (var i = 0; i < uli.length; i++) { uli[i].index = i; uli[i].addEventListener('click', function () { for (var j = 0; j < uli.length; j++) { uli[j].className = ''; oli[j].className = ''; } this.className = 'current'; oli[this.index].className = 'current'; }) }
appendix<style> * { margin: 0; padding: 0; list-style: none; } .box { height: 250px; width: 300px; border: 2px solid; } ul { display: flex; justify-content: space-between; background: red; border-bottom: 2px #ccc; } ul li { float: left; width: 100px; color: #fff; cursor: pointer; height: 40px; line-height: 40px; text-align: center; } ul li.current { border-bottom: 5px green solid; } ol li { margin: 30px; display: none; } ol li.current { display: block; } </style> <div class="box"> <ul> <li class="current">First page</li> <li>Page 2</li> <li>Page 3</li> </ul> <ol> <li class="current">I am the first page</li> <li>I am the second page</li> <li>I am the third page</li> </ol> </div> SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to open port 8080 on Alibaba Cloud ECS server
>>: Practical record of handling MySQL automatic shutdown problems
Execute the command: docker run --name centos8 -d...
Install ZLMediaKit on centos6 The author of ZLMed...
vue scaffolding -> vue.cli Quickly create a la...
Some people say that doing advertising is like bei...
This article example shares the specific code of ...
Create a new project test1 on Code Cloud Enter th...
1. Basic knowledge (methods of date objects) 😜 ge...
Cerebro is an evolution of the Elasticsearch Kopf...
This is a large drop-down menu implemented purely...
RULES can be used to control the style of the int...
1. Check the character set 1. Check the MYSQL dat...
This article mainly introduces the typing effect ...
The Nginx ngx_http_image_filter_module module (ng...
This article shares the specific code of JS to ac...
Table of contents Preface Several common bit oper...