La creación de un elemento <div> usando jQuery se puede hacer en los siguientes pasos:
Pasos:
- Cree un nuevo elemento <div>.
- Elija un elemento principal, donde colocar este elemento recién creado.
- Coloque el elemento div creado en el elemento principal.
Ejemplo 1: este ejemplo crea un elemento <div> y usa el método append() para agregar el elemento al final del elemento principal.
<!DOCTYPE html> <html> <head> <title> Create div element using jQuery </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <style> #parent { height: 100px; width: 300px; background: green; margin: 0 auto; } #newElement { height: 40px; width: 100px; margin: 0 auto; color: white } </style> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <div id= "parent"></div> <br><br> <button onclick="insert()"> insert </button> <!-- Script to insert div element --> <script> function insert() { $("#parent").append('<div id = "newElement">A ' + 'Computer Science portal for geeks</div>'); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo 2: este ejemplo crea un elemento <div> y usa el método prependTo() para agregar el elemento al comienzo del elemento principal.
<!DOCTYPE html> <html> <head> <title> Create div element using jQuery </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <style> #parent { height: 100px; width: 300px; background: green; margin: 0 auto; } #newElement { height: 40px; width: 100px; margin: 0 auto; color: white } </style> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <div id= "parent"></div> <br><br> <button onclick="insert()"> insert </button> <script> function insert() { $('<div id = "newElement">A Computer Science portal' + ' for geeks</div>').prependTo($('#parent')); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA