El método html() en jQuery se usa para establecer o devolver el contenido HTML interno del elemento seleccionado.
Sintaxis:
- Devuelve el contenido del primer elemento coincidente.
$(selector).html()
- Establece el contenido del elemento coincidente.
$(selector).html(content)
- Establece el contenido usando la función.
$(selector).html(function(index, currentcontent))
Parámetros: este método acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- contenido: Es un parámetro obligatorio que especifica el nuevo contenido para los elementos seleccionados.
- function(index, currentcontent): Es un parámetro opcional que especifica una función que devuelve el nuevo contenido para el elemento seleccionado.
- índice: se utiliza para devolver la posición de índice del elemento en el conjunto.
- currentcontent: Se utiliza para devolver el contenido HTML actual del elemento seleccionado.
Los siguientes ejemplos ilustran el método html() en jQuery:
Ejemplo 1: este ejemplo establece el contenido del elemento.
<!DOCTYPE html> <html> <head> <title> jQuery html() Method </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2> Fade-in effect<br> jQuery | html() Method </h2> <button>Click</button> <script> $(document).ready(function(){ $("button").click(function(){ $("h2").html("Hello <b>GEEKS!</b>"); }); }); </script> </body> </html>
Producción:
Ejemplo 2: este ejemplo devuelve la primera coincidencia de elemento.
<!DOCTYPE html> <html> <head> <title> jQuery html() Method </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2> jQuery | html() Method </h2> <button>Click</button> <script> $(document).ready(function(){ $("button").click(function(){ alert($("h2").html()); }); }); </script> </body> </html>
Producción:
Ejemplo 3: Este ejemplo establece el contenido usando la función.
<!DOCTYPE html> <html> <head> <title> jQuery html() Method </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2> jQuery | html() Method </h2> <button>Click</button> <!-- Script to set the content --> <script> $(document).ready(function() { $("button").click(function() { $("h2").html(function(n) { return "jQuery | html() Method" + " has index: " + n; }); }); }); </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA