jquery find element considering parent

Alina Osipova

How can I find an element considering parent node? Example:

<ul class="level-3">
     <li class="item-1">1</li>
     <li class="item-2">2</li>
     <li class="item-3">3</li>
</ul>
var $ul = $('.ul');
console.log($ul.find('.item-1')) - // found - OK

if find

console.log($ul.find('.level-3')) - // not found - WHY ???
Satpal

Assuming UL as element

You are not able to find it as level-3 is not the child of ul.

As per your current HTML, You need to use .filter()

Reduce the set of matched elements to those that match the selector or pass the function's test.

Code

var $ul = $('ul'); 
$ul.filter('.level-3')

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

XPath find parent of a child element

分類Dev

Jquery find identifies incorrect element

分類Dev

How to find neighbouring element of mother element (jQuery)?

分類Dev

XPath to find dynamic parent/ancestor element from current element?

分類Dev

jQuery move an element inside of elements parent

分類Dev

How to fix element with jQuery or css at the bottom of the parent

分類Dev

Jquery: call p element in parent function

分類Dev

jQuery - set this Parent Element ID as a text

分類Dev

how to remove specific element when parent has an element with jQuery?

分類Dev

How to find child element with the help of parent's ref?

分類Dev

Find closest hidden element and show it with jquery

分類Dev

Jquery - find next element in each loop

分類Dev

How to get the ID value of a parent element by class that is not immediate? jQuery

分類Dev

(jQuery) Selecting document.body instead of Parent Element

分類Dev

jQuery find all elements with class beneath parent, even in children elements

分類Dev

Jquery Scrolling Element to Position of Newly Appended Element (Calculating relative offset to parent)

分類Dev

How can I find current element on mouseover using jQuery?

分類Dev

jquery Checking if parent element has a specific text within it, if so then add child element after specific pre-existing child element

分類Dev

Find number of sorted arrays resulting from parent array after removing exactly one element at a time

分類Dev

Select parent element in stylus

分類Dev

Jquery select parent parent sibling

分類Dev

how to find a parent?

分類Dev

how to find Tag of a parent

分類Dev

Overflowing a child element outside the parent element

分類Dev

Selector for the child element for the current parent element

分類Dev

Given two directory trees how to find which filenames are the same, considering only filenames satisfying a condition?

分類Dev

float right element outside of parent

分類Dev

React is not changing the state of the parent element

分類Dev

nested element firing parent event

Related 関連記事

  1. 1

    XPath find parent of a child element

  2. 2

    Jquery find identifies incorrect element

  3. 3

    How to find neighbouring element of mother element (jQuery)?

  4. 4

    XPath to find dynamic parent/ancestor element from current element?

  5. 5

    jQuery move an element inside of elements parent

  6. 6

    How to fix element with jQuery or css at the bottom of the parent

  7. 7

    Jquery: call p element in parent function

  8. 8

    jQuery - set this Parent Element ID as a text

  9. 9

    how to remove specific element when parent has an element with jQuery?

  10. 10

    How to find child element with the help of parent's ref?

  11. 11

    Find closest hidden element and show it with jquery

  12. 12

    Jquery - find next element in each loop

  13. 13

    How to get the ID value of a parent element by class that is not immediate? jQuery

  14. 14

    (jQuery) Selecting document.body instead of Parent Element

  15. 15

    jQuery find all elements with class beneath parent, even in children elements

  16. 16

    Jquery Scrolling Element to Position of Newly Appended Element (Calculating relative offset to parent)

  17. 17

    How can I find current element on mouseover using jQuery?

  18. 18

    jquery Checking if parent element has a specific text within it, if so then add child element after specific pre-existing child element

  19. 19

    Find number of sorted arrays resulting from parent array after removing exactly one element at a time

  20. 20

    Select parent element in stylus

  21. 21

    Jquery select parent parent sibling

  22. 22

    how to find a parent?

  23. 23

    how to find Tag of a parent

  24. 24

    Overflowing a child element outside the parent element

  25. 25

    Selector for the child element for the current parent element

  26. 26

    Given two directory trees how to find which filenames are the same, considering only filenames satisfying a condition?

  27. 27

    float right element outside of parent

  28. 28

    React is not changing the state of the parent element

  29. 29

    nested element firing parent event

ホットタグ

アーカイブ