asp.net3.5 listview 怎么样鼠标放在行上整行高亮显示 选择
如题:
就是鼠标放在哪一行,哪一行的背景色变得不一样,就是所谓的高亮显示
然后,双击之后可以取得行的ID,然后跳转到指定页面
请大家帮忙解惑!
------解决方案--------------------
<tr id="aaa" onmouseover="currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699FF'" onmouseout="this.style.backgroundColor=currentcolor"
onclick="alert(this.aaa)"
></tr>
------解决方案--------------------
<li onclick="window.location.href='index.aspx?id=<%#Eval("Id")%>'" onmouseover="this.style.backgroundColor='#ffffff'" onmouseout="this.style.backgroundColor='#000000'"></li>