文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

js/jq/css如何实现简易下拉菜单功能

2023-07-04 21:15

关注

今天小编给大家分享一下js/jq/css如何实现简易下拉菜单功能的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

效果图预览

js/jq/css如何实现简易下拉菜单功能

一 、css实现

html代码部分

<!DOCTYPE html><html> <head>  <meta charset="UTF-8">  <title>html+css下拉菜单</title>  <link rel="stylesheet" type="text/css" href="css/style.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" /> </head> <body>  <ul class="menu">   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >首页</a>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单一</a>    <ul>     <li>内容一</li>     <li>内容一</li>     <li>内容一</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单二</a>    <ul>     <li>内容二</li>     <li>内容二</li>     <li>内容二</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单三</a>    <ul>     <li>内容三</li>     <li>内容三</li>     <li>内容三</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单四</a>   </li>  </ul> </body></html>

css部分

*{ padding: 0; margin: 0;}a{ text-decoration: none; color: #000;}ul,li{ list-style: none;}.menu{ margin: 50px auto; width: 500px; height: 35px; background-color: #ccc; text-align: center; line-height: 35px;}.menu li{ float: left; width: 20%; position: relative;}.menu li:hover ul{ display: block;}.menu li a{ display: block; }.menu li a:hover{ background-color: burlywood;}.menu li ul{ display: none; position: absolute;}.menu li ul li{ width: 100%; margin-top: 2px; background-color: darkgray;}.menu li ul li:hover{ cursor: pointer; background-color: chartreuse;}

二、js实现

html和js部分(实现方法一)

<!DOCTYPE html><html> <head>  <meta charset="UTF-8">  <title>JS下拉菜单</title>  <link rel="stylesheet" type="text/css" href="css/style.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" /> </head> <body>  <ul class="menu" id="menu">   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >首页</a>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单一</a>    <ul>     <li>内容一</li>     <li>内容一</li>     <li>内容一</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单二</a>    <ul class="show">     <li>内容二</li>     <li>内容二</li>     <li>内容二</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单三</a>    <ul class="hide">     <li>内容三</li>     <li>内容三</li>     <li>内容三</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单四</a>   </li>  </ul>  <script type="text/javascript">       window.onload = function(){     function $(id){     return typeof id == "string"?document.getElementById(id):id;     }    var menu_li = $("menu").getElementsByTagName("li");        for(var i = 0; i < menu_li.length; i++){     menu_li[i].onmouseover = function(){      var ss = this.getElementsByTagName("ul")[0];      if(ss != undefined){       ss.style.display = "block";      }     }    }    for(var j = 0; j < menu_li.length; j++){     menu_li[j].onmouseout = function(){      var ssa = this.getElementsByTagName("ul")[0];      if(ssa != undefined){       ssa.style.display = "none";      }          }    }       }           </script> </body></html>

html和js部分(实现方法二)

<!DOCTYPE html><html> <head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <style>   * {    padding: 0;    margin: 0;   }   li {    list-style: none;    float: left;   }   #tabCon {    clear: both;   }   #tabCon div {    display: none;   }   #tabCon div.fdiv {    display: block;   }  </style> </head> <body>  <div id="tanContainer">   <div id="tab">    <ul>     <li class="fli">标题一</li>     <li>标题二</li>     <li>标题三</li>     <li>标题四</li>    </ul>   </div>   <div id="tabCon">    <div class="fdiv">内容一</div>    <div>内容二</div>    <div>内容三</div>    <div>内容四</div>   </div>  </div> </body> <script>  function $(id){   return typeof id=="string"?document.getElementById(id):id;  }  var EventUtil = {   addHandler: function(element, type, handler) {    if(element.addEventListener) {     element.addEventListener(type, handler, false);    } else if(element.attachEvent) {     element.attachEvent("on" + type + handler);    } else {     element["on" + type] = handler;    }   },   removeHandler: function(element, type, handler) {    if(element.removeEventListener) {     element.removeEventListener(type, handler, false);    } else if(element.detachEvent) {     element.detachEvent("on" + type + handler);    } else {     element["on" + type] = null;    }   }  }  var tabs = $("tab").getElementsByTagName("li");  var divs = $("tabCon").getElementsByTagName("div");   for(var i = 0; i < tabs.length; i++) {   var set = function() {    change(this);   }   EventUtil.addHandler(tabs[i], "click", set);   //tabs[i].onclick=function(){change(this);}  }  function change(obj) {   console.log(obj);   for(var i = 0; i < tabs.length; i++) {    if(tabs[i] == obj) {console.log(tabs[i]);//     tabs[i].style.display = "block";     divs[i].style.display = "block";    } else {//     tabs[i].style.display = "none";     divs[i].style.display = "none";    }   }  } </script></html>

css部分

*{ padding: 0; margin: 0;}a{ text-decoration: none; color: #000;}ul,li{ list-style: none;}.menu{ margin: 50px auto; width: 500px; height: 35px; background-color: #ccc; text-align: center; line-height: 35px;}.menu li{ float: left; width: 20%; position: relative;}.menu li a{ display: block; }.menu li a:hover{ background-color: burlywood;}.menu li ul{ display: none; position: absolute; left: 0;}.menu li ul li{ width: 100%; margin-top: 2px; background-color: darkgray;}.menu li ul li:hover{ cursor: pointer; background-color: chartreuse;}

三、JQ实现

html和jq部分

<!DOCTYPE html><html> <head>  <meta charset="UTF-8">  <title>JS下拉菜单</title>  <link rel="stylesheet" type="text/css" href="css/style.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" /> </head> <body>  <ul class="menu" id="menu">   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >首页</a>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单一</a>    <ul>     <li>内容一</li>     <li>内容一</li>     <li>内容一</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单二</a>    <ul class="show">     <li>内容二</li>     <li>内容二</li>     <li>内容二</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单三</a>    <ul class="hide">     <li>内容三</li>     <li>内容三</li>     <li>内容三</li>    </ul>   </li>   <li>    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >菜单四</a>   </li>  </ul>  <script type="text/javascript" src="../../jq/jquery-1.7.2.min.js"></script>  <script type="text/javascript">       $(function(){    $(".menu li").hover(function(){     $(this).children("ul").show();    },function(){     $(this).children("ul").hide();    });   });  </script> </body></html>

css部分

*{ padding: 0; margin: 0;}a{ text-decoration: none; color: #000;}ul,li{ list-style: none;}.menu{ margin: 50px auto; width: 500px; height: 35px; background-color: #ccc; text-align: center; line-height: 35px;}.menu li{ float: left; width: 20%; position: relative;}.menu li a{ display: block; }.menu li a:hover{ background-color: burlywood;}.menu li ul{ display: none; position: absolute; left: 0;}.menu li ul li{ width: 100%; margin-top: 2px; background-color: darkgray;}.menu li ul li:hover{ cursor: pointer; background-color: chartreuse;}

以上就是“js/jq/css如何实现简易下拉菜单功能”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯