“jQuery First Child” Ответ

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 эквивалент

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

DOPE CODE

Выберите первые elemnt, есть класс в jQuery

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

jQuery First Child

$('div:first-child')
Kaotik

Ответы похожие на “jQuery First Child”

Вопросы похожие на “jQuery First Child”

Больше похожих ответов на “jQuery First Child” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования