javascript 使用数组中的数据填充表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用数组中的数据填充表相关的知识,希望对你有一定的参考价值。

var table = document.getElementById("table");

for(var record of parsedData) {
    var tableRow = table.insertRow(parsedData.indexOf(record + 1));
    var attributeCell = tableRow.insertCell(0);
    var valueCell = tableRow.insertCell(1);

    attributeCell.innerHTML = record.attribute;
    valueCell.innerHTML = record.value;
}

以上是关于javascript 使用数组中的数据填充表的主要内容,如果未能解决你的问题,请参考以下文章

使用核心数据中的数组填充表视图

在 Javascript 文件中使用 jQuery.each() 时,下拉列表中未填充数组中的数据

使用 Javascript 填充表数据时,jQuery Datatable 功能不起作用

根据表 jquery 中的数据填充多维数组

php - 如何生成 MySQL INSERT 语句以使用数组中的多行填充表

动态 HTML5 数据列表