En este artículo, aprenderemos cómo iterar en tres párrafos y establecer su propiedad de color rojo en jQuery. Tenemos tres párrafos y queremos iterar en estos párrafos y establecer su propiedad de color en rojo.
Enfoque: para hacer eso, primero, agregamos un botón y al hacer clic en este botón, se llama a una función cuyo nombre es fun() y en esta función, seleccionamos el elemento p e iteramos en cada párrafo usando la función each() en Jquery y cambie su color a rojo usando el método css() en JQuery.
function fun(){ $("p").each(function(){ $(this).css("color","red"); }); }
Ejemplo:
HTML
<!DOCTYPE html> <html lang="en"> <head> <style> h1 { color: green; } </style> <script src= "https://code.jquery.com/jquery-3.5.0.js"> </script> </head> <body> <center> <h1>GeeksforGeeks</h1> <p>Welcome</p> <p>to</p> <p>GeeksforGeeks</p> <strong> Click the button to iterate on three paragraph and change the color to Red </strong> <br /> <button onclick="fun()">Click</button> </center> <script> function fun() { $("p").each(function () { $(this).css("color", "red"); }); } </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por sachinchhipa44 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA