您的位置:首页 > Web前端 > JQuery

天易24----jquery实现表格的展开伸缩

2012-11-26 20:03 295 查看
一:示例图如下:

1)默认打开状态:



2)当点击第一组时:



二:示例代码:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title></title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript" src="<%=basePath %>js/jquery-1.6.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.t').click(function(){
$(this).toggleClass("selected").siblings(".child_"+this.id).toggle();
}).click();//不添加click()方法默认打开是全展现

});
</script>
<style type="text/css">
*{padding:0;margin:0;}
body {padding:100px;font-size:12px;font-family:"宋体";}
table{border-coliapse:coliapse;}
th{border-bottom:1px solid #000;padding:5px 15px;}
td{padding:5px 15px;}
.t{background:#eee;cursor:pointer;}
.selected{background:#ccc}
</style>
</head>

<body>
<table border="1">
<thead>
<th>姓名</th><th>年龄</th><th>电话</th>
</thead>
<tbody>
<tr class="t" id="row_1"><td colspan="3">第一组</td></tr>
<tr class="child_row_1"><td>王子虎</td><td>22</td><td>13064073789</td></tr>
<tr class="child_row_1"><td>王子虎1</td><td>21</td><td>13064073701</td></tr>
<tr class="t" id="row_2"><td colspan="3">第二组</td></tr>
<tr class="child_row_2"><td>王子虎2</td><td>23</td><td>13064073702</td></tr>
<tr class="child_row_2"><td>王子虎3</td><td>24</td><td>13064073703</td></tr>
<tr class="t" id="row_3"><td colspan="3">第三组</td></tr>
<tr class="child_row_3"><td>王子虎4</td><td>25</td><td>13064073704</td></tr>
<tr class="child_row_3"><td>王子虎5</td><td>26</td><td>13064073705</td></tr>
</tbody>
</table>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: