帆软report JS函数手册在哪里呢?
JS获取行号列号并改变单元格颜色
帆软js帮助文档 JavaScript-https://help.finereport.com/doc-view-615.html
JS实现鼠标点击行变色-https://help.finereport.com/doc-view-1201.html
获取行列号js代码
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
https://blog.csdn.net/weixin_43609391/article/details/88419444
$("td[id^=D7]").css('background-color','yellow');//给D7单元格增加背景色
帮助文档搜 JS改变单元格颜色就好了