Para eliminar elementos y contenido, usamos el método jQuery remove() que elimina el elemento seleccionado, así como todo lo que contiene, también eliminará todos los eventos vinculados asociados con ese elemento de destino.
Sintaxis:
$(selector).remove()
Ejemplo :
HTML
<!DOCTYPE html> <html> <head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous" > </script> <!-- JQuery CDN directed from the JQuery website --> <script> $(document).ready(function () { $("button").click(function () { $("p").remove(); }); }); </script> </head> <body> <div style="padding-top: 90px; padding-left: 200px"> <p style="font-size: 40px"> Welcome to GeeksforGeeks! </p> <p style="font-size: 40px"> Computer Science portal For geeks. </p> <p style="font-size: 40px;"> Learn DS-ALGO From here at your own pace. </p> <button style="padding: 12px"> Remove </button> </div> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por shubhamkumarsingh4957199 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA