http://chunghe.googlepages.com/fancy_table.htm
var rows = document.getElementsByTagName('tr');
for(var i=0; i<rows.length; i++){
rows[i].onmouseover = function(){
this.className += ' hilite';
}
rows[i].onmouseout = function(){
var t = this;
function f(){
t.className = t.className.replace('hilite','');
}
setTimeout(f, 350);
}
}
沒有留言:
張貼留言