“jQuery primer hijo” Código de respuesta

Primer elemento secundario JavaScript

Both these will give you the first child node:

console.log(parentElement.firstChild); // or
console.log(parentElement.childNodes[0]);

If you need the first child that is an element node then use:

console.log(parentElement.children[0]);
Lokesh003

FirstelementChild jQuery equivalente

  $('#myList > li:first-child');
// or
$('#myList').children('li:first-child');
// or
$('#myList > li').first();
// or
$('#myList').children().first();
// and so on

DOPE CODE

Seleccione el primer ELEMNT tener clase en jQuery

$( ".box" ).first().css( "font-style", "bold" );
Mehrshad Farzaneh

jQuery primer hijo

$('div:first-child')
Kaotik

Respuestas similares a “jQuery primer hijo”

Preguntas similares a “jQuery primer hijo”

Más respuestas relacionadas con “jQuery primer hijo” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código