Home  >  Article  >  Web Front-end  >  What does children in jQuery mean?

What does children in jQuery mean?

青灯夜游
青灯夜游Original
2022-05-12 20:29:163611browse

In jQuery, children means "children" and is a filter used to filter the children of the current jQ object and obtain qualified children, that is, to find all child elements; the syntax is "object. children(filter)", the parameter "filter" is used to set conditions and narrow the scope of searching for child elements.

What does children in jQuery mean?

The operating environment of this tutorial: windows7 system, jquery3.2.1 version, Dell G3 computer.

In jQuery, children means "children".

What does children in jQuery mean?

children is a filter. As the name suggests, it filters children. It can filter the children of the current jQ object and obtain qualified children, that is, find child elements.

The children() method returns all direct child elements of the selected element. This method only traverses a single level down the DOM tree.

Syntax:

$(selector).children(filter)

Parameter "filter": used to set conditions and specify a selector expression to narrow the scope of the search for sub-elements.

Example 1: Return all direct child elements of

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8" />
    		<script src="js/jquery-3.2.1.min.js"></script>
    		<style>
    			.descendants * {
    				display: block;
    				border: 2px solid lightgrey;
    				color: lightgrey;
    				padding: 5px;
    				margin: 15px;
    			}
    		</style>
    		<script>
    			$(document).ready(function() {
    				$("ul").children().css({
    					"color": "red",
    					"border": "2px solid red"
    				});
    			});
    		</script>
    	</head>
    
    	<body class="descendants">body (曾祖先节点)
    		<div style="width:500px;">div (祖先节点)
    			<ul>ul (直接父节点)
    				<li>li (子节点)
    					<span>span (孙节点)</span>
    				</li>
    				<li>li (子节点)
    					<span>span (孙节点)</span>
    				</li>
    			</ul>
    		</div>
    	</body>
    
    </html>

    What does children in jQuery mean?

    ##Example 2: Narrow the search scope

    Use the filter parameter to return all
  • elements with class name "1" that are direct child elements of

      <!DOCTYPE html>
      <html>
      	<head>
      		<meta charset="utf-8" />
      		<script src="js/jquery-1.10.2.min.js"></script>
      		<style>
      			.descendants * {
      				display: block;
      				border: 2px solid lightgrey;
      				color: lightgrey;
      				padding: 5px;
      				margin: 15px;
      			}
      		</style>
      		<script>
      			$(document).ready(function() {
      				$("ul").children("li.1").css({
      					"color": "red",
      					"border": "2px solid red"
      				});
      			});
      		</script>
      	</head>
      
      	<body class="descendants">body (曾祖先节点)
      		<div style="width:500px;">div (祖先节点)
      			<ul>ul (直接父节点)
      				<li class="1">li (子节点)
      					<span>span (孙节点)</span>
      				</li>
      				<li class="2">li (子节点)
      					<span>span (孙节点)</span>
      				</li>
      			</ul>
      		</div>
      	</body>
      
      </html>

      What does children in jQuery mean?

      [Recommended learning:

      jQuery video tutorial, web front-end video]

  • The above is the detailed content of What does children in jQuery mean?. For more information, please follow other related articles on the PHP Chinese website!

    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