“jQuery Найти родителя” Ответ

jQuery Найти родителя

$('#thisid').closest('li');

// `closest()` is equivalent to (but performs better than)
$('#thisid').parents('li').eq(0);
$('#thisid').parents('li').first();
Tiago F2

jQuery ближе всего

$( "li.item-a" )
  .closest( "ul" )
  .css( "background-color", "red" );
Matteoweb

Получите конкретный родительский элемент jQuery

$(this).parents("tr:first");
nilso

Выберите «Родитель Элемта»

$(this).parent(); // jquery
gritter97

jQuery получить родительский элемент

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>parent demo</title>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div><p>Hello</p></div>
<div class="selected"><div><p>Hello Again</p></div></div>
 
<script>
$( "p" ).parent( ".selected" ).css( "background", "yellow" );
</script>
 
</body>
</html>
Angry Angelfish

Ответы похожие на “jQuery Найти родителя”

Вопросы похожие на “jQuery Найти родителя”

Больше похожих ответов на “jQuery Найти родителя” по JavaScript

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

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