js控製表格隔行變色

來源:互聯網
上載者:User

標籤:char   rip   enter   ntb   padding   for   add   技術分享   script   

<!doctype html><html lang="en"><head><meta charset="UTF-8"><title>js控制隔行變色</title></head><body><table id="tb1" border="1" border-collapse="collapse" cellpadding="5" width="400" height="20" cellspacing="0" bordercolor="#99cccc"><thead><tr><td>編號</td><td>作品</td><td>時間</td></tr></thead><tbody id="tb2"><tr><td>1</td><td>回憶三部曲</td><td>1995</td></tr><tr><td>2</td><td>未麻的部屋</td><td>1997</td></tr><tr><td>3</td><td>千年女優</td><td>2001</td></tr><tr><td>4</td><td>妄想代理人</td><td>2004</td></tr><tr><td>5</td><td>紅辣椒</td><td>2006</td></tr><tr><td>6</td><td>東京教父</td><td>2003</td></tr></tbody></table><script type="text/javascript">     window.onload=function tablecolor(){     var t_name = document.getElementById("tb2");     var t_len = t_name.getElementsByTagName("tr");     for(var i=0;i<=t_len.length;i++){     //偶數行時執行     if(i%2 == 0){     t_len[i].style.backgroundColor="#ffcccc";             //添加滑鼠經過事件     t_len[i].onmouseover = function(){     this.style.backgroundColor="#ccffff"     }     //添加滑鼠離開事件     t_len[i].onmouseout = function(){     this.style.backgroundColor="#ffcccc"          }     }     else{     t_len[i].style.backgroundColor="#ffffcc";     t_len[i].onmouseover = function(){     this.style.backgroundColor="#ccffff"     }     t_len[i].onmouseout = function(){     this.style.backgroundColor="#ffffcc"     }     }     } }</script></body></html>

  

js控製表格隔行變色

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.