10.0.19版本,怎么使用JS代码,实现悬停单元格变色啊?只针对一个单元格
JS实现鼠标点击单元格背景变色-https://help.fanruan.com/finereport/doc-view-4349.html
鼠标点击/悬浮时修改单元格背景接口-https://help.fanruan.com/finereport/doc-view-4301.html
JS实现鼠标经过/点击单元格/当前行样式改变-我的帆软 (fanruan.com)
超级链接改变颜色- FineReport帮助文档 - 全面的报表使用教程和学习资料 (fanruan.com)
$('.linkspan').mouseover(function(){$(this).css('color','red');}); //鼠标移上$('.linkspan').mouseleave(function(){$(this).css('color','blue');}); //鼠标离开