Repeater中实现“鼠标滑动行变色”的效果
代码
1 <tr style='background-color: <%#(Container.ItemIndex%2==0)?"#eeeeee":"#ffffff"%>'onmouseover="this.style.background='#ddeeff'" onmouseout="this.style.background='<%#(Container.ItemIndex%2==0)?"#eeeeee":"#ffffff"%>'">
做法:在Repeater中的Itemtemplate下的<tr>中加入如上代码,即可实现!