代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Js
】
jQuery 表格特效:控制单元格折叠、展开代码
作者:
松子
/ 发布于
2016/4/26
/
807
<!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>jQuery table</title> <script src="/uploads/common/js/jquery-1.3.2.js"></script> <script> $(function() { $('tr.parent') .css("cursor","pointer") .attr("title","点击这里展开/关闭") .click(function(){ $(this).siblings('.child-'+this.id).toggle(); }); // 默认展开 //$('tr[@class^=child-]').hide().children('td'); }); </script> <style> table.detail, table.detail td, table.detail th { border:1px solid #000 ; } </style> </head> <body> <table id="detail_table" class="detail" > <col style="width:40px;"> <col style="width:80px;"> <col style="width:150px;"> <col style="width:40px;"> <thead> <tr> <th>ID</th> <th colspan="2">Name</th> <th>Total</th> </tr> </thead> <tbody> <tr class="parent" id="row123"> <td>123</td> <td colspan="2">关闭1</td> <td>100</td> </tr> <tr class="child-row123"> <td>?</td> <td>2007-01-02</td> <td>A short description</td> <td>15</td> </tr> <tr class="child-row123"> <td>?</td> <td>2007-02-03</td> <td>Another description</td> <td>45</td> </tr> <tr class="child-row123"> <td>?</td> <td>2007-03-04</td> <td>More Stuff</td> <td>40</td> </tr> <tr class="parent" id="row456"> <td>456</td> <td colspan="2">关闭2</td> <td>50</td> </tr> <tr class="child-row456"> <td>?</td> <td>2007-01-02</td> <td>A short description</td> <td>10</td> </tr> <tr class="child-row456"> <td>?</td> <td>2007-02-03</td> <td>Another description</td> <td>20</td> </tr> <tr class="child-row456"> <td>?</td> <td>2007-03-04</td> <td>More Stuff</td> <td>20</td> </tr> <tr class="parent" id="row789"> <td>789</td> <td colspan="2">关闭3</td> <td>75</td> </tr> <tr class="child-row789"> <td>?</td> <td>2007-01-02</td> <td>A short description</td> <td>33</td> </tr> <tr class="child-row789"> <td>?</td> <td>2007-02-03</td> <td>Another description</td> <td>22</td> </tr> <tr class="child-row789"> <td>?</td> <td>2007-03-04</td> <td>More Stuff</td> <td>20</td> </tr> </tbody> </table> </body> </html>
试试其它关键字
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
松子
贡献的其它代码
(
11
)
.
实现队列的操作
.
将一个分隔符字符串转换为一个表
.
获取指定目录下的所有文件列表
.
点击图片,调用上传控件
.
Ruby线程实现经典的生产者消费者问题
.
直接解析某 URL 对应的 HTML
.
jQuery 表格特效:控制单元格折叠、展开代码
.
线性方程组(gauss)
.
网页BOM编码去除
.
sql防注入的登录注册
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3