var num = $("td:visible").length - 2;//获取第一列的可见单元格个数,然后减去多余行(比如标题结尾等)if (num < 10) { _g().appendReportRow(this.options.location, this.options.reportIndex, 1); //小于10行则插入行} else { FR.Msg.alert("提示", "最多插入十行"); //大于等于10行则提示}想问下,帮助文档里边appendReportRow这个接口只有两个参数,为啥代码里边会有三个