Home  >  Article  >  Web Front-end  >  jQuery method to count the number of specified child elements_jquery

jQuery method to count the number of specified child elements_jquery

WBOY
WBOYOriginal
2016-05-16 16:09:051205browse

The example in this article describes how jQuery counts the number of specified sub-elements. Share it with everyone for your reference. The specific analysis is as follows:

jQuery can access subtags through >, and then get the number of subtags through size

<div id="foo">
 <div id="bar"></div>
 <div id="baz">
  <div id="biz">
 </div>
 <span><span>
</div>
//jQuery code to count child elements
$("#foo > div").size()

I hope this article will be helpful to everyone’s jQuery programming.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn