jQuery | :Selector de primer hijo

Es un jQuery Selector usado para seleccionar cada elemento que es el primer hijo de su padre .
Sintaxis: 
 

$(":first-child")

Valor devuelto: Selecciona y devuelve el primer elemento hijo de su padre.
Ejemplo 1: 
 

html

<!DOCTYPE html>
<html>
<h1>
  <center>
    Geeks 
  </center>
  </h1>
  
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
  </script>
    <script>
        $(document).ready(function() {
            $("p:first-child").css(
              "background-color", "green");
        });
    </script>
</head>
  
<body>
<div>
      
<p>Geeks for Geeks</p>
  
      
<p>jQuery</p>
  
      
<p>First Child Selector</p>
  
</div>
</body>
  
</html>

Producción: 
 

Ejemplo-2: 
 

html

<!DOCTYPE html>
<html>
<h1>
  <center>
    Geeks 
  </center>
  </h1>
  
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
  </script>
    
  <script>
        $(document).ready(function() {
            $("p:first-child").css(
              "background-color", "green");
        });
    </script>
</head>
  
<body>
    <div style="border:1px solid;">
          
<p>Geeks for Geeks</p>
  
          
<p>jQuery</p>
  
    </div>
    <br>
  
    <div style="border:1px solid;">
          
<p>Geeks for Geeks</p>
  
          
<p>jQuery</p>
  
          
<p>First Child Selector</p>
  
    </div>
  
    <div>jQuery:First Child Selector</div>
  
</body>
  
</html>

Producción: 
 

Navegadores compatibles:

  • Google Chrome 90.0+
  • Internet Explorer 9.0
  • Firefox 3.6
  • Safari 4.0
  • Ópera 10.5

Publicación traducida automáticamente

Artículo escrito por Code_Mech y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *