setTimeout(function() {
$("span.linkspan").mouseover(function() {$(this).css("color", "red");}) //悬浮变色
$("span.linkspan").mouseleave(function() {$(this).css("color", "black");}) //离开恢复
}, 500);
超级链接改变颜色- FineReport帮助文档 - 全面的报表使用教程和学习资料 (fanruan.com)
直接初始化事件,注意报表块名称
_g().getWidgetByName('report0').makeFontCell({color: 'red',}, 'mouseover');
https://bbs.fanruan.com/wenda/question/30209.html
参考
$("[widgetname=span.linkspan]")