jQuery實現的表格展開伸縮效果例項
https://www.cnblogs.com/yangpeng-jingjing/p/6003403.html
<table>
<thead>
<tr>
<th>姓名</th>
<th>性別</th>
<th>暫住地</th>
</tr>
</thead>
<tbody>
<tr class="parent" id="row_01">
<td colspan="3">前臺設計組</td>
</tr>
<tr class="child_row_01">
<td>張山</td>
<td>男</td>
<td>浙江寧波</td>
</tr>
<tr class="child_row_01">
<td>李四</td>
<td>女</td>
<td>浙江杭州</td>
</tr>
<tr class="parent" id="row_02">
<td colspan="3">前臺開發組</td>
</tr>
<tr class="child_row_02">
<td>王五</td>
<td>男</td>
<td>湖南長沙</td>
</tr>
<tr class="child_row_02">
<td>找六</td>
<td>男</td>
<td>浙江溫州</td>
</tr>
<tr class="parent" id="row_03">
<td colspan="3">後臺開發組</td>
</tr>
<tr class="child_row_03">
<td>Rain</td>
<td>男</td>
<td>浙江杭州</td>
</tr>
<tr class="child_row_03">
<td>MAXMAN</td>
<td>女</td>
<td>浙江杭州</td>
</tr>
</tbody>
</table>
<script>
$(function () {
$('tr.parent').click(function () {
//$(this).toggleClass("selected")//新增/刪除高亮
//.siblings('.child_' + this.id).toggle();
$(this).siblings('.child_' + this.id).toggle();
})
})
</script>
<style>
table {
border: 0;
border-collapse: collapse;
}
td {
font: normal 12px/17px Arial;
padding: 2px;
width: 100px;
}
th {
font: bold 12px/17px Arial;
text-align: left;
padding: 4px;
border-bottom: 1px solid #333;
width: 100px;
}
.parent {
background: #FFF38F;
cursor: pointer;
}
/* 偶數行樣式*/
.odd {
background: #FFFFEE;
}
/* 奇數行樣式*/
.selected {
background: #FF6500;
color: #fff;
}
</style>
相關文章
- 基於Kubernetes的hpa實現pod例項數量的自動伸縮
- 基於JQuery的自定義樹形選單表格,實現展開、收起效果jQuery
- Android之AppBarLayout實現懸停吸附伸縮效果AndroidAPP
- Qt實現遮罩效果並可以拖動伸縮QT遮罩
- jQuery tab選項卡效果程式碼例項jQuery
- AutoScaling彈性伸縮附加與分離RDS例項
- AutoScaling 彈性伸縮附加與分離RDS例項
- jQuery table表格隔行換色程式碼例項jQuery
- jQuery點選滑出層效果程式碼例項jQuery
- AutoScaling彈性伸縮附加與分離負載均衡例項負載
- html實現簡單ListViews效果的例項程式碼HTMLView
- jQuery 例項jQuery
- 表格tr行的展開和摺疊效果
- 小例項: 用vue實現手風琴效果Vue
- jQuery實現輪播效果jQuery
- input文字框獲取焦點伸縮效果
- jquery 實現的摺疊展開的選單jQuery
- jQuery表格隔行變色效果詳解jQuery
- jQuery 實現淡入淡出效果jQuery
- 如何使用 Kubernetes 實現應用程式的彈性伸縮
- Jquery實現的高亮效果程式碼分享jQuery
- react專案中實現元素的拖動和縮放例項React
- JQuery datatables 給表格新增載入中效果jQuery
- 如何使用jQuery建立彩色條紋表格效果?jQuery
- 基於jquery實現穿梭框效果jQuery
- jQuery Ajax 例項 全解析jQuery
- 使用 tke-autoscaling-placeholder 實現秒級彈性伸縮
- table表格美化程式碼例項
- jQuery 實現顯示與隱藏效果jQuery
- jQuery記住使用者名稱和密碼效果程式碼例項jQuery密碼
- PHP+jQuery開發簡單的翻牌抽獎例項PHPjQuery
- JavaScript實現選項卡效果JavaScript
- 利用jQuery實現Tab選項卡jQuery
- 在微服務領域Spring Boot自動伸縮如何實現微服務Spring Boot
- 可伸縮聚類演算法綜述(可伸縮聚類演算法開篇)聚類演算法
- table細線表格例項程式碼
- web 端展現報表資料時如何實現摺疊展開效果?Web
- HarmonyOS NEXT應用開發之圖片縮放效果實現