zoukankan
html css js c++ java
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>jquery 收缩展开效果</title> <script type="text/javascript" src="http://www.mengdongli.com/skins/2012/js/jquery1.3.2.js"></script> <style> .text{line-height:22px;padding:0 6px;color:#666;} .box h1{padding-left:10px;height:22px;line-height:22px;background:#f1f1f1;font-weight:bold;} .box{position:relative;border:1px solid #e7e7e7;} </style> </head> <body> <script type="text/javascript"> // 收缩展开效果 $(document).ready(function(){ // $(".box h1").toggle(function(){ // $(this).next(".text").animate({height: 'toggle', opacity: 'toggle'}, "slow"); // },function(){ //$(this).next(".text").animate({height: 'toggle', opacity: 'toggle'}, "slow"); //}); $("div.text").hide();//默认隐藏div,或者在样式表中添加.text{display:none},推荐使用后者 $(".box h1").click(function(){ $(this).next(".text").slideToggle("slow"); }) }); </script> <!-- 收缩展开效果 --> <div class="box"> <h1>收缩展开效果</h1> <div class="text"> 1<br /> 2<br /> 3<br /> 4<br /> 5<br /> </div> </div> <br /> <div class="box"> <h1>收缩展开效果</h1> <div class="text"> 1<br /> 2<br /> </div> </div> <br> 第一次运行请刷新一下页面。 </body> </html>
运行代码
复制代码
另存代码
提示:您可以先修改部分代码再运行
查看全文
相关阅读:
intellij idea 将taskRequest.java文件识别为文本文档
react 学习笔记2
react 学习笔记1
webpack4 配置笔记(转自掘金)
音乐播放之进度条-自定义
EBS
Python 学习笔记
Form 电子表格(JTF GRID)
Form 中实现历史记录查询
Form 去掉使用格式掩码带来的多余字符
原文地址:https://www.cnblogs.com/liuzhuqing/p/7480657.html
最新文章
cookie和session以及自定义分页
python数据库学习之Mysql
python前端学习之移动端和bootstrap
python前端学习之jQuery
python前端学习之js
unsigned/signed int/char类型表示的数值范围
char data[0]在struct末尾的用法
POSIX标准和XSI扩展
构造函数中,成员变量一定要通过初始化列表来初始化的情况
python中的字符数字之间的转换函数
热门文章
用C/C++实现的结构化数据处理
python读写json文件的简单实现
几种ipc方式
c语言中函数名代表函数地址,那函数的大小(就是函数指令在内存中的字节数)怎么求
rn 点击按钮 屏幕滑动到底部
react 子组件里用了redux的connect 怎么在父组件调用子组件方法
react checkbox无法选中 但是state已经发生变化
react 跳转页面
rn 深拷贝数据后 改变值 原来数组的值还是被改了
rn list 第一次不显示数据 要滑动一下才显示bug
Copyright © 2011-2022 走看看