亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

基于JavaScript實現表格隔行換色

瀏覽:88日期:2023-10-29 15:29:11

表格隔行換色

需求分析

我們商品分類的信息太多,如果每一行都顯示同一個顏色的話會讓人看的眼花,為了提高用戶體驗,減少用戶看錯的情況,需要對表格進行隔行換色

技術分析

table對象 集合 cells[]:返回包含表格中所有單元格的一個數組。 rows[]:返回包含表格中所有行的一個數組。 tBodies[]:返回包含表格中所有tbody 的一個數組。

步驟分析

確定事件: 文檔加載完成 onload 2. 事件要觸發函數: init() 3. 函數:操作頁面的元素 要操作表格中每一行 動態的修改行的背景顏色代碼實現

<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Title</title> <script > function init(){ //得到表格 var tab = document.getElementById('tab'); //得到表格中每一行 var rows = tab.rows; //便利所有的行,然后根據奇數 偶數 for(var i=1; i < rows.length; i++){var row = rows[i]; //得到其中的某一行if(i%2==0){ row.bgColor = 'yellow';}else{ row.bgColor = 'red'} } } </script></head><body onload='init()'><table border='1px' id='tab'> <tr> <td> <input type='checkbox'/> </td> <td>分類ID</td> <td>分類名稱</td> <td>分類商品</td> <td>分類描述</td> <td>操作</td> </tr> <tr> <td> <input type='checkbox'/> </td> <td>1</td> <td>手機數碼</td> <td>華為,小米,尼康</td> <td>黑馬數碼產品質量最好</td> <td> <a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >修改</a>|<a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >刪除</a> </td> </tr> <tr> <td> <input type='checkbox'/> </td> <td>2</td> <td>成人用品</td> <td>充氣的</td> <td>這里面的充氣電動硅膠的</td> <td><a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >修改</a>|<a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >刪除</a></td> </tr> <tr> <td> <input type='checkbox'/> </td> <td>3</td> <td>電腦辦公</td> <td>聯想,小米</td> <td>筆記本特賣</td> <td><a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >修改</a>|<a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >刪除</a></td> </tr> <tr> <td> <input type='checkbox'/> </td> <td>4</td> <td>饞嘴零食</td> <td>辣條,麻花,黃瓜</td> <td>年貨</td> <td><a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >修改</a>|<a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >刪除</a></td> </tr> <tr> <td> <input type='checkbox'/> </td> <td>5</td> <td>床上用品</td> <td>床單,被套,四件套</td> <td>都是套子</td> <td><a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >修改</a>|<a href='http://www.aoyou183.cn/bcjs/16677.html#' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' rel='external nofollow' >刪除</a></td> </tr></table></body></html>

基于JavaScript實現表格隔行換色

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 噜噜噜天天躁狠狠躁夜夜精品 | 国模私拍高清大胆专业网站 | 亚洲一区免费视频 | 真人一级毛片免费完整视 | 三及黄色片 | 国产自啪啪 | 欧美日韩亚洲综合 | 射综合网 | 久久亚洲一级α片 | 欧美唯爱网 | 成人欧美精品一区二区不卡 | 91福利国产在线观看 | 亚洲第一大网站 | 中文字幕亚洲综合久久 | 一级特黄牲大片免费视频 | 香蕉tv亚洲专区在线观看 | 91精品国产综合久久欧美 | 丁香综合在线 | 在线免费看影视网站入口 | 国产精品视频流白浆免费视频 | 亚洲综合图色 | 日本欧美国产精品第一页久久 | 第四色婷婷基地 | 五月天激激婷婷大综合丁香 | 可以免费看黄色 | www.黄色网址| 欧美大片欧美毛片大片 | 欧美视频亚洲色图 | 久久国产精品无码网站 | 美国毛片一级视频在线aa | 正在播放国产夫妻 | 黄色大片视频 | 麻豆观看| 日本一级毛片免费 | 国产一级做a爰片在线看 | 久久精品国产只有精品2020 | 亚洲加勒比久久88色综合1 | 啪啪免费网站视频观看 | 夜夜女人国产香蕉久久精品 | 国产69精品久久久久777 | 俄罗斯一级毛片免费视频 |