国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

javascript修改表格背景色實例代碼分享

2019-11-20 21:29:46
字體:
來源:轉載
供稿:網友

復制代碼 代碼如下:

<html>
<script>
//點擊當前選中行的時候設置當前行的顏色,同時恢復除當前行外的行的顏色及鼠標事件
function selectRow(target)
{
     var sTable = document.getElementById("ServiceListTable")
     for(var i=1;i<sTable.rows.length;i++) //遍歷除第一行外的所有行
     {
         if (sTable.rows[i] != target) //判斷是否當前選定行
         {
             sTable.rows[i].bgColor = "#ffffff"; //設置背景色
             sTable.rows[i].onmouseover = resumeRowOver; //增加onmouseover 事件
             sTable.rows[i].onmouseout = resumeRowOut;//增加onmouseout 事件
         }
         else
         {
             sTable.rows[i].bgColor = "#d3d3d3";
             sTable.rows[i].onmouseover = ""; //去除鼠標事件
             sTable.rows[i].onmouseout = ""; //去除鼠標事件
         }
     }
}
//移過時tr的背景色
function rowOver(target)
{
    target.bgColor='#e4e4e4';
}
//移出時tr的背景色
function rowOut(target)
{
    target.bgColor='#ffffff';
}
//恢復tr的的onmouseover事件配套調用函數
function resumeRowOver()
{
    rowOver(this);
}
//恢復tr的的onmouseout事件配套調用函數
function resumeRowOut()
{
    rowOut(this);
}  
</script>
<body>
<div style="width:50px;height:50px;background-color:Blue" onmouseover="javascript:this.style.backgroundColor='red';" onmouseout="javascript:this.style.backgroundColor='blue'">關于最后兩個函數resumeRowOver和resumeRowOut為什么這樣寫參考我之前寫的通過js給頁面元素添加事件對應的表格HTMLview plaincopy to clipboardprint?
</div>
<table width="100%" border="1" cellspacing="1" cellpadding="0" id="ServiceListTable"> 
<tr> 
<th>服務事項</th> 
<th>N</th> 
<th>狀態</th> 
<th>辦結</th> 
<th>資料</th> 
</tr> 
<tr onmouseover="rowOver(this)" onmouseout="rowOut(this)" onclick="selectRow(this)"> 
<td>相關內容</td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
</tr> 
<tr onmouseover="rowOver(this)" onmouseout="rowOut(this)" onclick="selectRow(this)"> 
<td>相關內容</td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
</tr> 
<tr onmouseover="rowOver(this)" onmouseout="rowOut(this)" onclick="selectRow(this)"> 
<td>相關內容</td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
</tr> 
<tr onmouseover="rowOver(this)" onmouseout="rowOut(this)" onclick="selectRow(this)"> 
<td>相關內容</td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
<td align="center"> </td> 
</tr> 
</table> 
</body>
</html>
 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 务川| 朝阳区| 翁源县| 崇义县| 三明市| 遂平县| 寿光市| 南安市| 合川市| 金乡县| 南郑县| 金坛市| 体育| 额济纳旗| 黄山市| 诸城市| 抚顺市| 海淀区| 健康| 山阳县| 泾川县| 北安市| 山东| 临沭县| 介休市| 普兰县| 梅河口市| 申扎县| 鄂伦春自治旗| 略阳县| 方正县| 罗源县| 项城市| 慈利县| 平乐县| 隆回县| 三门县| 夏河县| 资讯 | 金溪县| 内丘县|