영원한사랑

 

function setColor(obj, color) {
  obj.setAttribute('backup', obj.getAttribute('backgroundColor'));
  obj.setAttribute('backgroundColor', color);
  obj.onmouseout = new Function("this.setAttribute('backgroundColor', this.getAttribute('backup'));");
}


<tr onmouseover="setColor(this, 'color')">