El selector :parent en jQuery se usa para seleccionar todos los elementos que son el padre de otro elemento, incluidos los Nodes de texto.
Sintaxis:
$(":parent")
Ejemplo:
<!DOCTYPE html> <html> <head> <title> jQuery :parent() Selector </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function() { $("li:parent").css( "background-color", "green"); }); </script> </head> <body> <center> <h1 id="geeks1"> GeeksForGeeks</h1> <h2 id="geeks2"> jQuery :parent() Selector </h2> <div> <li>Geek1</li> <li></li> <li>Geek3</li> <li>Geek4</li> <li></li> <li>Geek6</li> </div> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con jQuery :parent Selector se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA