“Eliminar la fila específica con el botón HTML” Código de respuesta

Eliminar el botón de línea de tabla HTML usando JavaScript

// JQuery solution!
$('table').on('click', 'input[type="button"]', function(e){
   $(this).closest('tr').remove()
})
Sparkling Sardine

Eliminar la fila específica con el botón HTML

function deleteRow(r) {
    var i = r.parentNode.parentNode.rowIndex;
    document.getElementById("myTable").deleteRow(i);
}
Real Ray

Eliminar la fila específica con el botón HTML

<!DOCTYPE html>
<html>
<head>
<style>
table, td {
    border: 1px solid black;
}
</style>
</head>
<body>

<table id="myTable">

<tr>
  <td>Row 1</td>
  <td><input type="button" value="Delete" onclick="deleteRow(this)"></td>
</tr>
<tr>
  <td>Row 2</td>
  <td><input type="button" value="Delete" onclick="deleteRow(this)"></td>
</tr>
<tr>
  <td>Row 3</td>
  <td><input type="button" value="Delete" onclick="deleteRow(this)"></td>
</tr>
</table>
</body>
</html>
Real Ray

Respuestas similares a “Eliminar la fila específica con el botón HTML”

Preguntas similares a “Eliminar la fila específica con el botón HTML”

Más respuestas relacionadas con “Eliminar la fila específica con el botón HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código