
$(document).ready(function(){
    var clsName = "sp_xx_TABLE";	// table的class名称
    var overcolor='#e0f1f9';    //鼠标经过颜色
    var color1='#ecf4f8';        //第一种颜色
    var color2='#FFFFFF';        //第二种颜色

    var tables= $("." + clsName);
	
	tables.each(function(i){
		var tr=this.getElementsByTagName("tr");
		for(var i=1 ;i<tr.length;i++){
			tr[i].onmouseover=function(){
				this.style.backgroundColor=overcolor;
			}
			tr[i].onmouseout=function(){
				if(this.rowIndex%2==0){
					this.style.backgroundColor=color1;
				}else{
					this.style.backgroundColor=color2;
				}
			}
			if(i%2==0){
				tr[i].className="color1";
			}else{
				tr[i].className="color2";
			}
		}
	});
	

	
	
})

