1. 程式人生 > >html table標籤滑鼠移進移出背景變色

html table標籤滑鼠移進移出背景變色

window.onload = function(){ // 滑鼠移動改變背景,可以通過給每行繫結滑鼠移上事件和滑鼠移除事件來改變所在行背景色。 var trs = document.getElementsByTagName("tr"); for(var tr of trs){ tr.onmouseover = function(){ this.style.backgroundColor = "#f2f2f2"; } tr.
onmouseout = function(){ this.style.backgroundColor = "#fff"; } } }