表格隔行变色js代码,创建属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表格隔行变色js代码,创建属性相关的知识,希望对你有一定的参考价值。

<table summary="when and where you can see the band">
      <thead>
      <tr>
        <th>Date</th>
        <th>City</th>
        <th>Venue</th>
      </tr>
      </thead>
      <tbody>
      <tr>
        <td>June 9th</td>
        <td>Portland, <abbr title="Oregon">OR</abbr></td>
        <td>Crystal Ballroom</td>
      </tr>
      <tr>
        <td>June 10th</td>
        <td>Seattle, <abbr title="Washington">WA</abbr></td>
        <td>Crocodile Cafe</td>
      </tr>
      <tr>
        <td>June 12th</td>
        <td>Sacramento, <abbr title="California">CA</abbr></td>
        <td>Torch Club</td>
      </tr>
      <tr>
        <td>June 17th</td>
        <td>Austin, <abbr title="Texas">TX</abbr></td>
        <td>Speakeasy</td>
      </tr>
      </tbody>
    </table>
function stipeTables(){
if(!document.getElementsByTagName) return false;
var tables = document.getElementsByTagName("table");
var odd,rows;
for(var i = 0; i < tables.length; i++){
odd = false;
rows = tables[i].getElementsByTagName("tr");
for(var j = 0; j < rows.length; j++){
if(odd == true){
addClass(rows[j],"odd");//rows[j].style.backgroundColor = "#ffc"; 就兼容了
odd = false;
}else{ odd = true;}
}
}
}

function highlightRows(){
if(!document.getElementsByTagName) return false;
var rows = document.getElementsByTagName("tr");
for(var i = 0; i < rows.length; i++){
rows[i].oldClassName = rows[i].className;//把原来的cassName属性保存到自定义属性当中
rows[i].onmouseover = function(){
addClass(this,"highlight")  ;                               //this.style.fontWeight = "bold";
}
rows[i].onmouseout = function(){
this.className = this.oldClassName;                           //this.style.fontWeight = "normal";
}
}
}

addLoadEvent(stipeTables);
addLoadEvent(highlightRows);


以上是关于表格隔行变色js代码,创建属性的主要内容,如果未能解决你的问题,请参考以下文章

js控制表格隔行变色

js控制表格隔行变色

DOM设置表格隔行变色js代码及鼠标悬停在哪行,哪行字体就加粗效果

JS---案例:表格隔行变色(鼠标划过背景色恢复)

js---隔行变色

JavaScript for循环实现表格隔行变色