天天看點

表格隔行變色以及滑鼠移上變色 js代碼

var oldColor='';
				//var oTab=document.getElementById('tab1')
		function toColor(tableID)
		{
			    var oTab=document.getElementById(tableID)
				
			   	for(var i=0;i<oTab.tBodies[0].rows.length;i++)
			   //隔行變色
			   {    
			   	    oTab.tBodies[0].rows[i].onmouseover=function()
			   	    {  //滑鼠移入變色
						
			   	    	oldColor=this.style.background;
			   	    	this.style.background='#dff0d8';
			   	    };
			   	    oTab.tBodies[0].rows[i].onmouseout=function()
			   	    {   //滑鼠移出恢複原來顔色
			   	    	this.style.background=oldColor;
			   	    }
			   }
		}
toColor(tableId);
           
js