This article mainly introduces the use of js statements to implement tabs in web pages (two methods). It is very good and has reference value. Friends in need can refer to it.
It is often used in web pages. Something like a tab, to put it bluntly, is to click on an option, and the contents of this option will pop up below.
Method 1:
Method 1 can be achieved by using simple code. The following is all the code;
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>选项卡</title> <style type="text/css"> *{margin: 0;padding: 0;} #box{width: 600px;background: #ccc;margin: 0 auto;} li{list-style: none;} #ul1{display: block; width: 100%;overflow: hidden;} #ul1 li{width:110px;height: 40px;background: #4cfed2;float: left;margin-left: 8px;text-align: center;line-height: 40px;} #content{width: 100%;margin-top: 20px;} #content p{display: none;} #content p.active{display: block;} .show{background: red;} </style> </head> <body> <p id="box"> <ul id="ul1"> <li>首页</li> <li>产品</li> <li>新闻</li> <li>联系</li> <li>我的</li> </ul> <p id="content"> <p class="active"> <ul> <li>new1</li> <li>new2</li> <li>new3</li> </ul> </p> <p> <ul> <li>new4</li> <li>new5</li> <li>new6</li> </ul> </p> <p> <ul> <li>new7</li> <li>new8</li> <li>new9</li> </ul> </p> <p> <ul> <li>new10</li> <li>new11</li> <li>new12</li> </ul> </p> <p> <ul> <li>new13</li> <li>new14</li> <li>new15</li> </ul> </p> </p> </p> <script type="text/javascript"> window.onload=function(){ var oli=document.getElementById("ul1").getElementsByTagName("li"); //alert(oli.length); var op=document.getElementById("content").getElementsByTagName("p"); //alert(op.length) for(var i=0;i<oli.length;i++){ oli[i]._index=i; oli[i].onclick=function(){ //alert(i); for(i=0;i<oli.length;i++){ oli[i].className=''; op[i].style.display='none'; } this.className='show'; op[this._index].style.display='block'; } } } </script> </body> </html>
First we define the content in the web page tab in the HTML part.
<p id="box"> <ul id="ul1"><!--选项卡中的点击部分--> <li>首页</li> <li>产品</li> <li>新闻</li> <li>联系</li> <li>我的</li> </ul> <p id="content"> <p class="active"><!--选项卡中要显示和被显示的部分--> <ul> <li>new1</li> <li>new2</li> <li>new3</li> </ul> </p> <p> <ul> <li>new4</li> <li>new5</li> <li>new6</li> </ul> </p> <p> <ul> <li>new7</li> <li>new8</li> <li>new9</li> </ul> </p> <p> <ul> <li>new10</li> <li>new11</li> <li>new12</li> </ul> </p> <p> <ul> <li>new13</li> <li>new14</li> <li>new15</li> </ul> </p> </p> </p>
The CSS part modifies the content in HTML:
<style type="text/css"> *{margin: 0;padding: 0;} #box{width: 600px;background: #ccc;margin: 0 auto;} li{list-style: none;} #ul1{display: block; width: 100%;overflow: hidden;} #ul1 li{width:110px;height: 40px;background: #4cfed2;float: left;margin-left: 8px;text-align: center;line-height: 40px;} #content{width: 100%;margin-top: 20px;} #content p{display: none;} #content p.active{display: block;} .show{background: red;} </style>
The last is the most important js part:
<script type="text/javascript"> window.onload=function(){ var oli=document.getElementById("ul1").getElementsByTagName("li"); //alert(oli.length); var op=document.getElementById("content").getElementsByTagName("p");//提取HTML中的元素 //alert(op.length) for(var i=0;i<oli.length;i++){ oli[i]._index=i; oli[i].onclick=function(){ //alert(i); for(i=0;i<oli.length;i++){ oli[i].className=''; op[i].style.display='none'; } this.className='show'; op[this._index].style.display='block'; } } } </script>
JS statement The first for loop in is to obtain the clicked parts of all tabs; because the I variable cannot be accessed in the event function below, the i variable loops to the oli.length value each time it is clicked. Therefore, the value of i is given to a custom element attribute to save the value of i in the loop for use below. That is: oli[i]._index=i;
After adding the click function, the second for loop is to change the className of all oli to "empty" and the style of all ops. display='none'; After the loop ends, add the className to the currently clicked oli and the style of the corresponding op below as display='block';
The following is the result of the operation:
When writing the program, you must pay attention to the click part in the tab: the number of li (oli.length in JS) must be the same as the number of p (op.length in JS) contained in p with the ID of content below. I When writing a program, because oli.length and op.length are not equal, the program reports an error, but the error cannot be found for a long time; in short, you still need to be more careful.
Method 2:
Method 1 is suitable for situations where there are relatively few tabs, but we need to use this if there are more tabs. First method, the second method is applied to a relatively important knowledge point in JS that our teacher talked about this week: self-running function
(function a(){ //函数里的内容 })(参数);
define functiona(); to the entire function Bring parentheses, and the following parentheses are input parameters;
The following is the program for the self-running function of method two:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>多个tab选项卡</title> <script> window.onload = function() { tab("tabMain", "click"); tab("tabMain1", "click"); tab("tabMain2", "click"); tab("tabMain4", "click"); function tab(id, event) { var op = document.getElementById(id); var oBtn = op.getElementsByTagName("li"); var oBox = op.getElementsByTagName("p"); for(var i = 0; i < oBtn.length; i++) { //console.log(i) (function(index) {//自执行函数 oBtn[index].addEventListener(event, function() { for(var i = 0; i < oBtn.length; i++) { oBtn[i].className = ''; oBox[i].className = 'tabSide'; } this.className = 'active'; oBox[index].className = 'active'; });//添加事件监听 })(i) } } } </script> <style> * { padding: 0; margin: 0; list-style: none; } .tabMenu { width: 300px; margin: 50px auto 0 auto; } .tabMenu ul { display: block; overflow: hidden; width: 300px; height: 40px; background: #eee; } .tabMenu ul li { cursor: pointer; display: block; float: left; width: 100px; text-align: center; height: 40px; line-height: 40px; font-size: 16px; } .tabMenu ul li.active { background: #f00; color: #fff; } .tabMenu .tabSide { display: none; padding: 10px; line-height: 20px; width: 278px; border: solid 1px #eee; } .tabMenu p.active { display: block; padding: 10px; line-height: 20px; width: 278px; border: solid 1px #eee; } </style> </head> <body> <p id="tabMain" class="tabMenu"> <ul> <li class="active">tab1</li> <li>tab2</li> <li>tab3</li> </ul> <p class="tabSide active">内容1</p> <p class="tabSide">内容2</p> <p class="tabSide">内容3</p> </p> <p id="tabMain1" class="tabMenu"> <ul> <li class="active">tab1</li> <li>tab2</li> <li>tab3</li> </ul> <p class="tabSide active">内容1</p> <p class="tabSide">内容2</p> <p class="tabSide">内容3</p> </p> <p id="tabMain2" class="tabMenu"> <ul> <li class="active">tab1</li> <li>tab2</li> <li>tab3</li> </ul> <p class="tabSide active">内容1</p> <p class="tabSide">内容2</p> <p class="tabSide">内容3</p> </p> <p id="tabMain4" class="tabMenu"> <ul> <li class="active">tab1</li> <li>tab2</li> <li>tab3</li> </ul> <p class="tabSide active">内容1</p> <p class="tabSide">内容2</p> <p class="tabSide">内容3</p> </p> </body> </html>
Similar to method one, first write the content in the HTML, and perform the CSS part on the HTML For modification, let’s look directly at the JS part;
<script> window.onload = function() { tab("tabMain", "click"); tab("tabMain1", "click"); tab("tabMain2", "click"); tab("tabMain4", "click"); function tab(id, event) { var op = document.getElementById(id); var oBtn = op.getElementsByTagName("li"); var oBox = op.getElementsByTagName("p"); for(var i = 0; i < oBtn.length; i++) { //alert(i); (function(index) {//自执行函数 oBtn[index].addEventListener(event, function() { for(var i = 0; i < oBtn.length; i++) { oBtn[i].className = ''; oBox[i].className = 'tabSide'; } this.className = 'active'; oBox[index].className = 'active'; });//添加事件监听 })(i) } } } </script>
Complete multiple tabs by adding events and self-running functions.
The above is the detailed content of JavaScript implements tabs in web pages (two methods). For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
