Front-End Learning notes (Zepto or jquery)--related actions on Li Tags (ii)

Source: Internet
Author: User

Related actions on Li tags--8 ways to get the contents of the first element of the LI tag

1. Alert ($ ("Ul>li"). First (). html ());
2. Alert ($ (' Ul>li '). EQ (0). html ());
3. Alert ($ (' Ul>li:nth-child (1) '). html ());
4. Alert ($ (' ul '). Children () [0].innerhtml];
5. Alert ($ (' Ul>li ') [0].innerhtml];
6. Alert ($ (' ul '). Find ("Li") [0].innerhtml];
7. Alert ($ (' ul '). Contents (). Filter ("Li") [0].innerhtml];
8. Alert ($ ("Ul>li"). Get (0). InnerHTML);

Note: the contents () method gets the child nodes of each element in the matching element collection, including the text and comment nodes.

The filter () method reduces the set of matching elements to the element that matches the specified selector.

Similar to the. contents () and. Children () methods, the former contains text nodes and HTML elements in the resulting JQuery object

We are not allowed to use $ (' ul ') directly here. Contents () Need to use $ (' ul '). Contents (). Filter ("Li")

Front-End Learning notes (Zepto or jquery)--related actions on Li Tags (ii)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.