This article example shares the specific code of JS to achieve the secondary menu effect for your reference. The specific content is as follows js clicks on the secondary menu, clicks on the secondary menu and changes the main menu to the secondary menu Click to display the secondary menu <style> *{ margin:0px auto; padding:0px; } .yiji{ width:200px; height:40px; background-color:red; color:#fff; text-align:center; line-height:40px;h vertical-align:middle; border:1px solid #FFF; } .erji1{ width:200px; height:40px; background-color:#F63; color:#fff; text-align:center; line-height:40px; vertical-align:middle; border:1px solid #FFF; } #erji2{ display:none; } #erji3{ display:none; } #erji4{ display:none; } </style> </head> <body> <div class="yiji" onclick="Show('erji2')">Home</div> <div id="erji2"> <div class="erji1">1</div> <div class="erji1">1</div> <div class="erji1">1</div> </div> <div class="yiji" onclick="Show('erji3')">Talent</div> <div id="erji3"> <div class="erji1">1</div> <div class="erji1">1</div> <div class="erji1">1</div> </div> <div class="yiji" onclick="Show('erji4')">Market</div> <div id="erji4"> <div class="erji1">1</div> <div class="erji1">1</div> <div class="erji1">1</div> </div> </body> <script type="text/javascript"> function Show(a) { var a = document.getElementById(a); if(a.style.display == "block") { a.style.display = "none"; } else { a.style.display = "block"; } } </script> #caidan{ width:200px; height:40px; border:1px solid #999; text-align:center; line-height:40px; vertical-align:middle; } .list{ width:200px; height:40px; border:1px solid #999; border-top-width:0px; text-align:center; line-height:40px; vertical-align:middle; display:none; } #caidan,.list:hover{ cursor:pointer; } .list:hover{ background-color:#63F; } <div style="width:200px; height:400px;"> <div id="caidan" onclick="Show()">China</div> <div class="list" onclick="Xuan(this)">Shandong</div> <div class="list" onclick="Xuan(this)">Jinan</div> <div class="list" onclick="Xuan(this)">Jining</div> <div class="list" onclick="Xuan(this)">Weihai</div> <div class="list" onclick="Xuan(this)">Zibo</div> </div> function Show() { var list = document.getElementsByClassName("list"); //Display list for(var i=0;i<list.length;i++) { list[i].style.display = "block"; } } function Xuan(a) { var c = document.getElementById("caidan"); c.innerHTML = a.innerHTML; var list = document.getElementsByClassName("list"); //Display list for(var i=0;i<list.length;i++) { list[i].style.display = "none"; } } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: VMware workstation 12 install Ubuntu 14.04 (64 bit)
>>: JDBC Exploration SQLException Analysis
1. Edit the PAM configuration file sudo vim /etc/...
Table of contents Preface 1. for loop 2. while lo...
Communication between containers 1. Network shari...
When Mysql occupies too much CPU, where should we...
Nginx is used as the server, Mongo is used as the...
This article example shares the specific code of ...
Check whether your cuda is installed Type in the ...
1. Enter the configuration file of the yum source...
Request logic Front-end --> Request nginx via ...
This article example shares the specific code of ...
In daily work, we sometimes run slow queries to r...
This article shares the specific code for JavaScr...
Written at the beginning I remember seeing a shar...
Table of contents 1. Introduction 2. Solution Imp...