contents()是jQuery中的内置方法,它返回所有直接子级,包括所选元素的文本和注释节点。
用法:
$(selector).contents()
参数:它不接受任何参数。
返回值:它返回所选元素的所有直接子元素。
代码1:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/
jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
<!-- jQuery code to perform this method -->
$("button").click(function() {
$("div").contents().filter("p").wrap("<b/>");
});
});
</script>
<style>
#p1 {
width: 420px;
padding: 50px;
display: block;
border: 2px solid green;
font-size: 30px;
}
</style>
</head>
<body>
<div>
<!-- This paragraph will get bold after click on
the button -->
<p id="p1">Welcome to GeeksforGeeks !!!</p>
</div>
<!-- click on this button -->
<button>Click Me!</button>
<br>
</body>
</html>
输出:
在点击“点击我!”按钮之前,
点击“点击我!”按钮后,
代码2:
在下面的代码中,无需单击任何按钮。
<html>
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<style>
#p1 {
display: block;
width: 400px;
padding: 30px;
border: 2px solid green;
font-size: 30px;
}
</style>
</head>
<body>
<!-- This paragraph will get bold -->
<p id="p1">Welcome to GeeksforGeeks !</p>
<script>
$("p")
.contents()
.filter(function() {
return this.nodeType !== 1;
})
.wrap("<b></b>");
</script>
</body>
</html>
输出:
相关用法
- JQuery first()用法及代码示例
- JQuery last()用法及代码示例
- JQuery eq()用法及代码示例
- JQuery one()用法及代码示例
- JQuery val()用法及代码示例
- JQuery on()用法及代码示例
- JQuery has()用法及代码示例
- JQuery after()用法及代码示例
- JQuery removeProp()用法及代码示例
- JQuery replaceAll()用法及代码示例
- JQuery replaceWith()用法及代码示例
- JQuery removeAttr()用法及代码示例
- JQuery resize()用法及代码示例
- JQuery serialize()用法及代码示例
- JQuery stop()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | contents() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。