How does jquery obtain the number of identical sub-elements under an element?

Source: Internet
Author: User

How does jquery obtain the number of identical sub-elements under an element?

For example, the following html code obtains the number of elements a under P:

<p id="father"><a></a><a></a><a></a><a></a><a></a>……<a></a></p>
We can write as follows:

$("#father a").length




How does jquery obtain the number of identical sub-elements under an element?

$ ("# Father li"). length

How does jquery click an element to obtain the subscript of the first few identical elements in the parent element?

Should the type be a button? It is very convenient to use index, as shown below:
<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "www.w3.org/..al.dtd">
<Html xmlns = "www.w3.org/5o/xhtml">
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8"/>
<Title> untitled document </title>
</Head>
<Script src = "js/jquery-1.4.4.js" language = "javascript" type = "text/javascript"> </script>
<Script language = "javascript" type = "text/javascript">
$ (Document). ready (function (){
$ ("Div: button"). click (function (){
Alert ($ (this). index () + 1 );
});
});
</Script>
</Script>
<Body>
<Div>
<Input type = "button" value = "Description">
<Input type = "button" value = "View">
<Input type = "button" value = "Submit">
</Div>
<Div>
<Input type = "button" value = "Description">
<Input type = "button" value = "View">
<Input type = "button" value = "Submit">
</Div>
<Div>
<Input type = "button" value = "Description">
<I ...... remaining full text>

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.