1

我已经建立了一个表:

function insertTable(elementName, text, textColor, backgroundColor, relativeOffsetArea, fatherBC, scrollArea, offsetArea, clientArea) {
    this.elementName = elementName;
    this.text = text;
    this.textColor = textColor;
    this.backgroundColor = backgroundColor;
    this.relativeOffsetArea = relativeOffsetArea;
    this.fatherBC = fatherBC;
    this.scrollArea = scrollArea;
    this.offsetArea = offsetArea;
    this.clientArea = clientArea;
}

我在运行过程中添加到这个表数据..

但是当我使用以下代码查看控制台日志中的填充表时:

  console.table(consoleResult,["elementName", "text", "textColor", "backgroundColor", "relativeOffsetArea", "fatherBC", "scrollArea",
               "offsetArea", "clientArea"]);

最大行数为 1000。控制台表的长度是否限制为 1000?您是否熟悉导出此表的另一种方式(可能是 excel)?

4

1 回答 1

0

console.table 仅适用于某些浏览器版本。如果您想在 excel 中使用此数据,只需将其循环到服务器脚本并将其下载为带有和 html 表的 xls。(它有点hacky,但excel会很高兴地打开一个保存为xls文件的html表)

在 php 中举个例子: HTML 表格到 excel - PHP

于 2013-09-21T14:14:51.243 回答