公司名称不变色,树节点下面的鼠标悬浮变色
icon.zip
效果图
初始化的时候加个悬浮事件呗;具体样式自己写
var obj = $("tr.tntr");
obj.mouseover(function() {
$(this).css("background-color","yellow");
})
obj.mouseleave(function() {
$(this).css("background-color","white");
https://help.fanruan.com/finereport/doc-view-3051.html
参考一下这个