[ jquery 过滤器 children() ] 此方法用于在选择器的基础之上返回被选元素的所有直接子元素
Posted 窗棂博客记录
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ jquery 过滤器 children() ] 此方法用于在选择器的基础之上返回被选元素的所有直接子元素相关的知识,希望对你有一定的参考价值。
此方法用于在选择器的基础之上返回被选元素的所有直接子元素
实例:
<html lang=‘zh-cn‘>
<head>
<title>Insert you title</title>
<meta http-equiv=‘description‘ content=‘this is my page‘>
<meta http-equiv=‘keywords‘ content=‘keyword1,keyword2,keyword3‘>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type=‘text/javascript‘ src=‘./js/jquery-1.12.1.min.js‘></script>
<style type="text/css">
*{margin:0;padding:0;}
html{font:400 15px/1.2em ‘Courier New‘;color:#666;width:750px;margin:25px auto;}
div > p{white-space: pre-wrap;margin:15px 0;}
div >*{text-indent:8px;}
.hover{color:#FF96EC;}
</style>
<script type=‘text/javascript‘>
$(function(){
$(‘#demo‘).children().addClass(‘hover‘);
});
</script>
</head>
<body>
<div id=‘demo‘>
<p>This is a p tag text presentation.</p>
<p>This is a p tag text presentation.</p>
<p>This is a p tag text presentation.</p>
<div class=‘selectorDemoFirst‘ style=‘border:1px solid #925CE9;‘>
<p>This is a p tag text presentation.</p>
<p>This is a p tag text presentation.</p>
</div>
<p>This is a p tag text presentation.</p>
<div class=‘selectorDemoSecond‘ style=‘border:1px solid #999;margin-bottom: 45px;‘>
<span>This is a span tag text presentation</span>
<p>This is a p tag text presentation.</p>
</div>
<div class=‘selectorDemoSecond‘ style=‘border:1px solid #925CE9;‘>
<span>This is a span tag text presentation</span>
<p>This is a p tag text presentation.</p>
<span style=‘padding:8px;‘>This is a span tag text presentation</span>
</div>
<p>This is a p tag text presentation.</p>
</div>
</body>
</html>
以上是关于[ jquery 过滤器 children() ] 此方法用于在选择器的基础之上返回被选元素的所有直接子元素的主要内容,如果未能解决你的问题,请参考以下文章
基于jquery中children()与find()的区别介绍