wrapInner() 方法是 jQuery 中的内置方法,用于将 HTML 元素包在每个选定元素的内容周围。
用法:
$(selector).wrapInner(wrap_element, function(index))
Parameters: 该函数接受如上所述和如下所述的两个参数:
- wrap_element:它是一个强制参数,用于指定 HTML 元素来环绕所选元素的内容
- function:它是一个可选参数,用于指定返回包装元素的函数。
- index:它返回元素的索引。
返回值:此方法返回已应用更改的选定元素。
以下示例说明了 jQuery 中的 wrapInner() 方法:
示例 1:此示例不包含可选参数。
html
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
$(document).ready(function () {
$("div").click(function () {
$(this).wrapInner("<b></b>").css(
"background-color", "green");
});
});
</script>
<style>
body {
width: 200px;
padding: 20px;
height: 20px;
border: 2px solid green;
}
</style>
</head>
<body>
<!-- click on this div and see the change -->
<div>Welcome to GeeksforGeeks!</div>
</body>
</html>
输出:
示例 2:
html
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
$(document).ready(function () {
$("div").click(function () {
$("span").wrapInner(function (n) {
return "<i></i>";
});
});
});
</script>
<style>
body {
width: 250px;
padding: 20px;
height: 20px;
font-size: 20px;
border: 2px solid green;
}
</style>
</head>
<body>
<!-- click on this div and see the change -->
<div>
Welcome to
<span>GeeksforGeeks!</span>
</div>
</body>
</html>
输出:
相关文章:
相关用法
- JQuery wrapInner()用法及代码示例
- JQuery wrap()用法及代码示例
- JQuery wrapAll()用法及代码示例
- JQuery width()用法及代码示例
- JQuery when()用法及代码示例
- JQuery andSelf()用法及代码示例
- JQuery change()用法及代码示例
- JQuery each()用法及代码示例
- JQuery end()用法及代码示例
- JQuery fadeOut()用法及代码示例
- JQuery height()用法及代码示例
- JQuery innerHeight()用法及代码示例
- JQuery keydown()用法及代码示例
- JQuery keypress()用法及代码示例
- JQuery next()用法及代码示例
- JQuery nextAll()用法及代码示例
- JQuery parent()用法及代码示例
- JQuery parents()用法及代码示例
- JQuery prev()用法及代码示例
- JQuery prevAll()用法及代码示例
- JQuery remove()用法及代码示例
- JQuery show()用法及代码示例
- JQuery toArray()用法及代码示例
- JQuery addBack()用法及代码示例
- JQuery addClass()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery wrapInner() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。