【www.gdgbn.com--js教程】

function attachXMenu(objid){
 var tds=objid.getElementsByTagName("td");
 for(var i=0;i   with(tds[i]){
   onmouseover=function(){
    with(this){
     filters[0].apply();
     style.background="url("images/over.gif")";
     style.color="#ffffff"; //文字颜色
     filters[0].play();
    }
   }
   onmouseout=function(){
    with(this){
     filters[0].apply();
     style.background="";
     style.color="#fedbbf"; //文字颜色
     filters[0].play();
    }
   }
  }
 }
}

本文来源:http://www.gdgbn.com/wangyezhizuo/19584/