forum-body.js 431 B

12345678910111213141516171819202122
  1. //forum//
  2. var Ptr=document.getElementById("tab").getElementsByTagName("tr");
  3. function $() {
  4. for (i=1;i<Ptr.length+1;i++) {
  5. Ptr[i-1].className = (i%2>0)?"t1":"t2";
  6. }
  7. }
  8. window.onload=$;
  9. for(var i=0;i<Ptr.length;i++) {
  10. Ptr[i].onmouseover=function(){
  11. this.tmpClass=this.className;
  12. this.className = "t3";
  13. };
  14. Ptr[i].onmouseout=function(){
  15. this.className=this.tmpClass;
  16. };
  17. }
  18. //forum end//