【转】Jquery折叠效果

转自:http://www.cnblogs.com/clc2008/archive/2011/10/25/2223254.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript" src="js/jquery-1.6.4.min.js"></script>
    <style type="text/css">
    #myul{ width:504px;}
    #myul li { list-style:none;border:1px solid #96C2F1; padding:1px;}
    #myul li span{ list-style:none; background:#B2D3F5; width:480px; height:20px; display:block; padding-left:20px;  }
    #myul li span.hand{ cursor:pointer;background:#B2D3F5 url(img/right.gif) no-repeat 5px center;}
    #myul li span.current{ background:#b2d300 url(img/down.gif) no-repeat 5px center; }
    #myul li div{ background:#EFF7FF;width:490px; padding:0px 5px 5px 5px; }

    </style>
    <script type="text/javascript">
        $(function () {
            $("#myul li div").hide();
            $("#myul li span").addClass("hand");
            $("#myul li span").click(function () {
                $(this).toggleClass("current");
                $(this).parent().siblings().find("span").removeClass("current");
                $(this).parent().find("div.hid").slideToggle("fast");
                $(this).parent().siblings().find("div").slideUp("fast");
            });
        })
    </script>
</head>
<body>
<ul id="myul">
<li><span>第一级菜单</span>
   <div class="hid">
     <p>武器哦的撒旦法发生的撒旦法打撒旦法 <br />asdfasfdasfd</p>
     <p>武器哦的撒旦法发生的撒旦法打撒旦法 <br />asdfasfdasfd</p>
   </div>

</li>
<li><span>第二级菜单</span>
   <div class="hid">武器哦的撒旦法发生的撒旦法</div> </li>
<li><span> 第三级菜单</span>
<div class="hid">
   <p>武器哦的撒旦法发生的撒旦法打撒旦法asdfasfdasfd</p>
   <p>武器哦的撒旦法发生的撒旦法打撒旦法 <br />asdfasfdasfd</p>
   <p>武器哦的撒旦法发生的撒旦法打撒旦法asdfasfdasfd</p>
   <p>武器哦的撒旦法发生的撒旦法打撒旦法 <br />asdfasfdasfd</p>
   </div>
</li>
</ul>
</body>
</html>

【转】Jquery折叠效果,布布扣,bubuko.com

时间: 2024-10-04 04:51:48

【转】Jquery折叠效果的相关文章

BootStrap入门教程 (四) :JQuery类库插件(模态窗口,滚动监控,标签效果,提示效果,“泡芙”效果,警告区域,折叠效果,旋转木马,输入提示)

上讲回顾:Bootstrap组件丰富同时具有良好可扩展性,能够很好地应用在生产环境.这些组件包括按钮(Button),导航(Navigation),缩略图( thumbnails),提醒(Alert),进度条(progress bar)等,能够很好减少前端工程师的代码量,实现更加丰富充实的页面. Bootstrap作为一套良好的前端工具,要实现现代的动态页面效果,javascript插件是必不可少的.它提供了12个基于JQuery类库的插件,包括模态窗口(Modals),滚动监控(Scrolls

[jquery]折叠指定条件的表格

最近在做财务报表时候,一些表格要做特定折叠效果 这里通过2个自定义属性来对表格之间的属性作关联 date-head和date-num,输出表格时候,可以按照这2个自定义属性给某些带父子层级关系的内容指定关联关系 再通过jquery获取这些具有相当关联关系的表格作出折叠效果 效果图 先上jquery $(document).ready(function(e) { $(".table").find(".head").each(function() { $(this).f

jquery-练习-折叠效果

<!DOCTYPE html > <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>bind折叠效果</title> <script type="text/

淡入淡出(折叠效果)and点击切换背景图片

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ

在MarkDown文档中添加jQuery折叠面板

折腾Hexo博客,做了个软件整理收集页,在首席前端顾问蔡老板的指点下,终于实现了文章中使用折叠面板的功能,现记录如下. 因为想整站都有这样的效果,所以直接集成到使用的主题中,本站使用的是maupassant主题,其他主题应该大同小异,仅供参考. 改造主题 新建定义class或id的js,如我新建了个accordion.js,里面的内容如下 123 $(function() { $( ".accordion" ).accordion();}); 如果用<div id=accordi

jQuery楼层效果

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>jQuery楼层效果</title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> <script

5种风格的 jQuery 分页效果【附代码】

5种风格的 jQuery 分页效果 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>jQuery Pagination - jPaginate</title> <meta http-equi

几个比较常用的jQuery交互效果

<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">最近做了不少东西,都是比较杂碎的,但是也有一些比较经典jQuery的效果,我把它提炼出来吧,就算做笔记了,以后忘了可以翻阅一下.</span> 1.有的页面很长,当我们好不容易翻到底部的时候或者累死了还没翻到底部就想回到顶部的时候,这时候急切想要一个回到顶部的按钮,这个按钮可

Bootstrap基础7(标签、徽章、大屏展播、页面标题、缩略图、进度条、面板、折叠效果)

<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>标签.徽章.