Cómo insertar una fila en un cuerpo de tabla HTML en JavaScript


133

Tengo una tabla HTML con un encabezado y un pie de página:

<table id="myTable">
    <thead>
        <tr>
            <th>My Header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>aaaaa</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td>My footer</td>
        </tr>
    <tfoot>
</table>

Estoy tratando de agregar una fila tbodycon lo siguiente:

myTable.insertRow(myTable.rows.length - 1);

pero la fila se agrega en la tfootsección.

¿Cómo lo inserto tbody?


Respuestas:


215

Si desea agregar una fila en el tbody, obtenga una referencia y agréguela allí.

var tableRef = document.getElementById('myTable').getElementsByTagName('tbody')[0];

// Insert a row in the table at the last row
var newRow   = tableRef.insertRow();

// Insert a cell in the row at index 0
var newCell  = newRow.insertCell(0);

// Append a text node to the cell
var newText  = document.createTextNode('New row');
newCell.appendChild(newText);

Una demostración de trabajo está aquí . Además, puede consultar la documentación de insertRow aquí .


3
Mi código se rompe porque: No se puede leer la propiedad 'insertRow' de nulo. ¿Alguna sugerencia?
Vrankela

1
@Vrankela: Probablemente su selector sea incorrecto (primera línea en el ejemplo).
Christian Strempfer

2
lo anterior fallaría la primera vez. en su lugar, verifique si no hay filas: var rows = tableRef.rows; var rowsSoFar = (rows == nulo)? 0: filas.longitud; var newRow = tableRef.insertRow (rowsSoFar);
enor

Gracias Jonathan, ¿Cómo agregar estilo CSS en Textnote?
Nguyễn Thắng

2
En lugar de tableRef.insertRow(tableRef.rows.length);usted, puede usarlo simplemente tableRef.insertRow(-1);para insertar la fila al final de la tabla.
jeanggi90

32

Puede probar el siguiente fragmento con jQuery :

$(table).find('tbody').append("<tr><td>aaaa</td></tr>");

22
tal vez tengas razón pero a veces necesitas saber las cosas reales :) y como digo, siempre debes saber JavaScript antes de usar cualquier biblioteca sin cuerpo duro;)
Marwan

¡Sí, no olvides las comas en 'tbody'! $(table).find('tbody').append( "<tr><td>aaaa</td></tr>" );
Heitor

Estoy tratando de aplicar su respuesta a mi caso, pero no pude, así que publiqué una nueva pregunta, ¿cree que puede responderla y salvarme? ► stackoverflow.com/q/63194846/3298930 .
Jose Manuel Abarca Rodríguez

13

Enfoque básico:

Esto debería agregar contenido con formato HTML y mostrar la fila recién agregada.

var myHtmlContent = "<h3>hello</h3>"
var tableRef = document.getElementById('myTable').getElementsByTagName('tbody')[0];

var newRow = tableRef.insertRow(tableRef.rows.length);
newRow.innerHTML = myHtmlContent;

2
Mi solución favorita: muy elegante y con mayor flexibilidad para agregar HTML interno.
jimiayler

9

Estás cerca. Simplemente agregue la fila a en tbodylugar de table:

myTbody.insertRow();

Simplemente obtenga una referencia a tBody( myTbody) antes de usar. Tenga en cuenta que no necesita pasar la última posición en una tabla; se posiciona automáticamente al final cuando se omite el argumento.

Una demostración en vivo está en jsFiddle .


6

Creo que este script es exactamente lo que necesitas

var t = document.getElementById('myTable');
var r =document.createElement('TR');
t.tBodies[0].appendChild(r)

por supuesto, debe modificar su nueva fila, pero acabo de ofrecerle el concepto en la respuesta y le dejé el resto :)
Marwan

4

Agregar filas:

<html>
    <script>
        function addRow() {
            var table = document.getElementById('myTable');
            //var row = document.getElementById("myTable");
            var x = table.insertRow(0);
            var e = table.rows.length-1;
            var l = table.rows[e].cells.length;
            //x.innerHTML = "&nbsp;";

            for (var c=0, m=l; c < m; c++) {
                table.rows[0].insertCell(c);
                table.rows[0].cells[c].innerHTML = "&nbsp;&nbsp;";
            }
        }

        function addColumn() {
            var table = document.getElementById('myTable');
            for (var r = 0, n = table.rows.length; r < n; r++) {
                table.rows[r].insertCell(0);
                table.rows[r].cells[0].innerHTML = "&nbsp;&nbsp;";
            }
        }

        function deleteRow() {
            document.getElementById("myTable").deleteRow(0);
        }

        function deleteColumn() {
            // var row = document.getElementById("myRow");
            var table = document.getElementById('myTable');
            for (var r = 0, n = table.rows.length; r < n; r++) {
                table.rows[r].deleteCell(0); // var table handle
            }
        }
    </script>

    <body>
        <input type="button" value="row +" onClick="addRow()" border=0 style='cursor:hand'>
        <input type="button" value="row -" onClick='deleteRow()' border=0 style='cursor:hand'>
        <input type="button" value="column +" onClick="addColumn()" border=0 style='cursor:hand'>
        <input type="button" value="column -" onClick='deleteColumn()' border=0 style='cursor:hand'>

        <table  id='myTable' border=1 cellpadding=0 cellspacing=0>
            <tr id='myRow'>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
            </tr>
            <tr>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
            </tr>
        </table>
    </body>
</html>

Y las celdas.


77
Creo que deberías usar variables más sensibles al crear un ejemplo.
Uriahs Victor

2

He intentado esto, y esto está funcionando para mí:

var table = document.getElementById("myTable");
var row = table.insertRow(myTable.rows.length-2);
var cell1 = row.insertCell(0);

2
¿Y si el pie de página tiene 2 filas?
Jérôme Verstrynge

1
Ok, simplemente hazlo como var row = table.insertRow (0); agregará fila en la parte superior
Pandiyan Cool

@JVerstry tbody: esto es exactamente lo que hace mozilla
e2-e4

1

Puedes usar el siguiente ejemplo:

<table id="purches">
    <thead>
        <tr>
            <th>ID</th>
            <th>Transaction Date</th>
            <th>Category</th>
            <th>Transaction Amount</th>
            <th>Offer</th>
        </tr>
    </thead>

    <!--  <tr th:each="person: ${list}"    >
            <td><li th:each="person: ${list}" th:text="|${person.description}|"></li></td>
            <td><li th:each="person: ${list}" th:text="|${person.price}|"></li></td>
            <td><li th:each="person: ${list}" th:text="|${person.available}|"></li></td>
            <td><li th:each="person: ${list}" th:text="|${person.from}|"></li></td>
            </tr>
    -->

    <tbody id="feedback">
    </tbody>
</table>

Archivo JavaScript:

$.ajax({
    type: "POST",
    contentType: "application/json",
    url: "/search",
    data: JSON.stringify(search),
    dataType: 'json',
    cache: false,
    timeout: 600000,
    success: function (data) {
        //  var json = "<h4>Ajax Response</h4><pre>"  + JSON.stringify(data, null, 4) + "</pre>";
        // $('#feedback').html(json);
        //
        console.log("SUCCESS: ", data);
        //$("#btn-search").prop("disabled", false);

        for (var i = 0; i < data.length; i++) {
            //$("#feedback").append('<tr><td>' + data[i].accountNumber + '</td><td>' + data[i].category + '</td><td>' + data[i].ssn + '</td></tr>');
            $('#feedback').append('<tr><td>' + data[i].accountNumber + '</td><td>' + data[i].category + '</td><td>' + data[i].ssn + '</td><td>' + data[i].ssn + '</td><td>' + data[i].ssn + '</td></tr>');

            alert(data[i].accountNumber)
        }
    },
    error: function (e) {
        var json = "<h4>Ajax Response</h4><pre>" + e.responseText + "</pre>";
        $('#feedback').html(json);

        console.log("ERROR: ", e);
        $("#btn-search").prop("disabled", false);
    }
});

1

Agregar columna, Agregar fila, Eliminar columna y Eliminar fila.

La manera más simple

function addColumn(myTable) {
    var table = document.getElementById(myTable);
    var row = table.getElementsByTagName('tr');
    for (i=0; i<row.length; i++) {
        row[i].innerHTML = row[i].innerHTML + '<td></td>';
    }
}

function deleterow(tblId)
{
      var table = document.getElementById(tblId);
      var row = table.getElementsByTagName('tr');
      if (row.length != '1') {
          row[row.length - 1].outerHTML = '';
      }
}

function deleteColumn(tblId)
{
    var allRows = document.getElementById(tblId).rows;
    for (var i=0; i<allRows.length; i++) {
        if (allRows[i].cells.length > 1) {
            allRows[i].deleteCell(-1);
        }
    }
}

function myFunction(myTable) {
    var table = document.getElementById(myTable);
    var row = table.getElementsByTagName('tr');
    var row = row[row.length-1].outerHTML;
    table.innerHTML = table.innerHTML + row;
    var row = table.getElementsByTagName('tr');
    var row = row[row.length-1].getElementsByTagName('td');
    for(i=0; i<row.length; i++) {
        row[i].innerHTML = '';
    }
}
table, td {
    border: 1px solid black;
    border-collapse: collapse;
}
td {
    cursor: text;
    padding: 10px;
}
td:empty:after {
    content: "Type here...";
    color: #CCCCCC;
}
<!DOCTYPE html>
<html>
    <head>
    </head>

    <body>
        <form>
            <p>
            <input type="button" value="+Column" onclick="addColumn('tblSample')">
            <input type="button" value="-Column" onclick="deleteColumn('tblSample')">
            <input type="button" value="+Row" onclick="myFunction('tblSample')">
            <input type="button" value="-Row" onclick="deleterow('tblSample')">
            </p>
            <table><tbody id="tblSample" contenteditable><tr><td></td></tr></tbody></table>
        </form>
    </body>

</html>

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.