实现鼠标悬浮接触的当前行变色
解决方法:
1.js代码
$("#table tr.dx").mouseover(function(){
$(this).addClass("over").siblings("tr").removeClass("over");
}).mouseout(function(){
$(this).removeClass("over").siblings("tr").removeClass("over");
});
2.标签
<table id="table">
<tbody>
<tr ><td>企业名称</td><td>账号</td><td>大小</td></tr>
<tr class="dx"><td>2</td><td>3</td><td>145037</td></tr>
<tr class="dx"><td>2</td><td>3</td><td>145037</td></tr>
</tbody>
</table>
3.css样式
.over{ cursor:pointer; background-color:#ebf7ff;}
本文链接:http://yayihouse.com/yayishuwu/chapter/1510