jQuery parent descendant Selector selecciona todos los elementos que son descendientes de un elemento específico (principal).
Sintaxis:
$("parent descendant")
Ejemplo:
html
<!DOCTYPE html> <html> <head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function() { $("div span").css("color", "lightgreen"); }); </script> </head> <body> <h4>This div element has descendant span:</h4> <div> <span>DESCENDANT ELEMENT</span> </div> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por AkshayGulati y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA