使用javascript-HTML格式化动态表中的每一行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用javascript-HTML格式化动态表中的每一行相关的知识,希望对你有一定的参考价值。

我使用下一个函数在html表单中创建一个动态表:

<script>
    function poblarTabla() {

        // CREATE DYNAMIC TABLE.
        var table = document.createElement('table');

        // SET THE TABLE ID. 
        // WE WOULD NEED THE ID TO TRAVERSE AND EXTRACT DATA FROM THE TABLE.
        table.setAttribute('id', 'tablaDeCuentas');

        var arrHead = new Array();
        arrHead = ['Emp. ID', 'Emp.Name', 'Designation'];

        var arrValue = new Array();
        arrValue.push(['1', 'Green Field', 'Accountant']);
        arrValue.push(['2', 'Arun Banik', 'Project Manager']);
        arrValue.push(['3', 'Dewane Paul', 'Programmer']);

        var tr = table.insertRow(-1);

        for (var h = 0; h < arrHead.length; h++) {
            var th = document.createElement('th');              // TABLE HEADER.
            th.innerHTML = arrHead[h];
            tr.appendChild(th);
        }

        for (var c = 0; c <= arrValue.length - 1; c++) {
            tr = table.insertRow(-1);

            for (var j = 0; j < arrHead.length; j++) {
                var td = document.createElement('td');          // TABLE DEFINITION.
                td = tr.insertCell(-1);
                td.innerHTML = arrValue[c][j];                  // ADD VALUES TO EACH CELL.
            }
        }


        document.body.appendChild(table);

    }

</script>

这工作正常,我现在要做的是使用以下格式格式化每一行:

<tr align="left" valign="middle"><td bgcolor="#005C84" width="240" height="30"> <p style="color: white; font-size: 14px;font-family: Arial,sans-serif;font-weight: normal;text-decoration: none; display:block; padding:0; margin:0; margin-left:10px">ID de cuenta:</p></td><td bgcolor="#e5f0c3"><p style="color: #666; font-size: 14px;font-family: Arial,sans-serif;font-weight: normal;text-decoration: none; display:block; padding:0; margin:0; margin-left:10px"></p></td></tr>

因此,每次创建行时,都会以此格式显示在表单中。任何人都可以帮我一把吗?事先提前!

答案

您可以尝试创建类,然后在创建表或其行时添加它们,而不是使用内联样式。

style.css文件

.table-style{
    align: left;
    valign: middle;
}

然后在你的javascript中:

table.classList.add('table-style');

以上是关于使用javascript-HTML格式化动态表中的每一行的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript-html标题滚动效果

如何使用填充旧表中的行的动态数据动态更新新MySQL表中的行?

使用具有动态范围的自动过滤器

如何使用 Graphql 动态更新一个表中的多行

将 Spark 数据帧保存为 Hive 中的动态分区表

使用jquery动态添加和删除表中的行和列