ul和li导航栏

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ul和li导航栏相关的知识,希望对你有一定的参考价值。

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP ‘test3.jsp‘ starting page</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
    <script src="js/jquery-2.1.1.min.js">
        
    </script>
    <style>
        li{
            list-style:none;
            color:blue;
            font-size:12px;
            margin-left:10px;
        }
        ul{
            color:#f1cd23;
            font-size:20px;
            margin:0px;
            padding:1px;
        }
        p{
            width:100px;
            height:25px;
            background-color:#37dddd;
            margin:0px;
            padding:0px;
            border-radius:5px;
            text-align:center;
            
        }
    </style>
  </head>
 
  <body>
    <ul id="ul1">
        <p>1111</p>
        <li>张三</li>
        <li>李四</li>
        <li>王五</li>
    </ul>
     <ul id="ul2">
         <p>2222</p>
        <li>张三</li>
        <li>李四</li>
        <li>王五</li>
    </ul>
     <ul id="ul3">
         <p>3333</p>
        <li>张三</li>
        <li>李四</li>
        <li>王五</li>
    </ul>
  </body>
  <script language="javascript">
      $("p").mousemove(function(){
        $(this).parent("ul").find("*").show(500);
        var $p=$(this).parent("ul");
        var $x=$p.siblings();
        $x.find("li").hide(600);
        
    });
    $("p").mouseout(function(){
        $("ul").find("li").hide(600);
    });
  </script>
</html>


本文出自 “matengbing” 博客,请务必保留此出处http://matengbing.blog.51cto.com/11395502/1865771

以上是关于ul和li导航栏的主要内容,如果未能解决你的问题,请参考以下文章

<ul> 水平导航栏...垂直对齐元素

<ul> 水平导航栏...垂直对齐元素

侧边导航栏css示例

ul做导航栏

带弹性的导航栏

几种作横向导航栏的方法