.DataListTable tbody tr { /* 隔行变色 */ background-color:expression((this.sectionRowIndex%2==0)?"#FFF":"#E1F1F1"); /* 悬停变色 */ onmouseover: expression(onmouseover=function(){ this.style.borderColor ='blue'; this.style.backgroundColor ='yellow'}); onmouseout: expression(onmouseout=function(){ this.style.borderColor=''; this.style.backgroundColor =''}); }