jquery实现点击展开列表同时隐藏其他列表
2019/6/29 22:25:03
本文主要是介绍jquery实现点击展开列表同时隐藏其他列表,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文实例讲述了jquery实现点击展开列表同时隐藏其他列表。分享给大家供大家参考。具体如下:
这里使用jquery实现展开、隐藏特效,点击列表标题后该项内容展开,其它项收缩起来,也就是不显示了。个人喜好了,有的喜欢在默认状态下不显示其它选项的内容,这个就是这种情况,仅供参考吧。
运行效果截图如下:
具体代码如下:
<!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-Type" content="text/html; charset=utf-8" /> <title>js点击展开列表</title> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> </head> <script type="text/javascript"> // 收缩展开效果 $(document).ready(function(){ $('.box').click(function(){ $(this).children('.text').slideToggle().parents('.box').siblings('.box').children('.text').hide(); }) }); </script> <style type="text/css"> .box{width:200px; margin:0 auto; background:#CCC;} .text{display:none;} </style> <body> <div class="box"> <h2>对ASP擅长的程序</h2> <div class="text">论坛类和文章类</div> </div> </div> <div class="box"> <h2>对PHP擅长的程序</h2> <div class="text">博客类和新闻类</div> </div> </div> <div class="box"> <h2>对前端擅长的插件</h2> <div class="text">jquery</div> </div> </div> </body> </html>
希望本文所述对大家的jquery程序设计有所帮助。
这篇关于jquery实现点击展开列表同时隐藏其他列表的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-03-06jquery对css样式(jquery中的css方法)-icode9专业技术文章分享
- 2023-05-27JQuery的认识和安装
- 2023-01-06JQuery应用技巧:如何定义 HTML 模板并使用 JQuery 进行加载-icode9专业技术文章分享
- 2022-09-29复习-jQuery
- 2022-09-04Python3项目初始化10-->前端基础jquery、ajax,sweetalert--更新用户改造
- 2022-08-30day 27 jquery
- 2022-08-29jQuery筛选器,bootstrap
- 2022-08-20JQuery事件绑定
- 2022-08-20JQuery案例
- 2022-08-07关于jQuery的学习