以下代码只在填报下有效, 数据分析模式下代码应该怎么写
代码文档来源:https://help.fanruan.com/finereport/doc-view-545.html
var $tds = $('.x-table td[col=0][fm="SEQ()"]:visible');
//获取第1列中可见的序号单元格(A列)
var n = 0;
$tds.each(function(i, e) {
n = n + 1;
$(e).text(n);
//将当前编号重新设置
})
https://bbs.fanruan.com/wenda/question/65934.html