手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery实现点击展开列表同时隐藏其他列表
jquery实现点击展开列表同时隐藏其他列表
摘要:本文实例讲述了jquery实现点击展开列表同时隐藏其他列表。分享给大家供大家参考。具体如下:这里使用jquery实现展开、隐藏特效,点击列表...

本文实例讲述了jquery实现点击展开列表同时隐藏其他列表。分享给大家供大家参考。具体如下:

这里使用jquery实现展开、隐藏特效,点击列表标题后该项内容展开,其它项收缩起来,也就是不显示了。个人喜好了,有的喜欢在默认状态下不显示其它选项的内容,这个就是这种情况,仅供参考吧。

运行效果截图如下:

jquery实现点击展开列表同时隐藏其他列表1

具体代码如下:

<!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> <h2>对ASP擅长的程序</h2> <div>论坛类和文章类</div> </div> </div> <div> <h2>对PHP擅长的程序</h2> <div>博客类和新闻类</div> </div> </div> <div> <h2>对前端擅长的插件</h2> <div>jquery</div> </div> </div> </body> </html>

希望本文所述对大家的jquery程序设计有所帮助。

【jquery实现点击展开列表同时隐藏其他列表】相关文章:

jquery实现图片左右切换的方法

javascript实现点击商品列表checkbox实时统计金额的方法

jquery实现点击label的同时触发文本框点击事件的方法

jQuery实现弹出窗口中切换登录与注册表单

jQuery实现返回顶部效果的方法

基于jquery实现下拉框美化特效

JavaScript实现鼠标点击后层展开效果的方法

jQuery插件pagewalkthrough实现引导页效果

jquery实现弹出层效果实例

jQuery实现文本展开收缩特效

精品推荐
分类导航