jquery的mouseove和mouseout用法
解决方法:
mouseover事件结合mouseout事件实现鼠标悬浮换色
$("#change").mouseover(function(){
$(this).addClass("dx-over");
}).mouseout(function(){
$(this).removeClass("dx-over");
});
<div id="change">鼠标碰到我就变色</table>
.wzb-table-01 tr.dx-over{ cursor:pointer; background-color:#ebf7ff;}
本文链接:http://yayihouse.com/yayishuwu/chapter/1511