Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How javascript hides drop-down menus

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of "javascript how to hide the drop-down menu", the editor shows you the operation process through the actual case, the operation method is simple and fast, practical, I hope this "javascript how to hide the drop-down menu" article can help you solve the problem.

Javascript hides the drop-down menu by first creating a "demo.html" and "demo.css", then creating a "demo.js", and finally hiding it through "function hideSubMenu (li) {...}".

This article operating environment: windows7 system, javascript1.8.5 version, Dell G3 computer.

How does javascript hide drop-down menus?

Javascript realizes the display and hiding of drop-down menus

Demo.html

Realize the drop-down menu effect on the home page of the course hall JavaScript Html/CSS learning center video learning examples question and answer A classic case about us.

Demo.js

Function displaySubMenu (li) {var subMenu = li.getElementsByTagName ("ul") [0]; subMenu.style.display = "block";} function hideSubMenu (li) {var subMenu = li.getElementsByTagName ("ul") [0]; subMenu.style.display = "none";}

Demo.css

* {margin:0px; padding:0px;} body {font-family:Verdana, Geneva, sans-serif; font-size:14px;} # nav {width:600px; height:40px; background-color:#eee; margin:0 auto;} ul {list-style:none;} ul li {float:left; line-height:40px; text-align:center; width:100px;} a {text-decoration:none; color:#000; display:block;} a:hover {color:#F00; background-color:#666 } ul li ul li {float:none;background-color:#eee; margin:2px 0px;} ul li ul {display:none;}

Effect:

That's all for "how javascript hides the drop-down menu". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report