wrapInner()方法是jQuery中的內置方法,用於將HTML元素包裝在每個選定元素的內容周圍。
用法:
$(selector).wrapInner(wrap_element, function(index))
參數:該函數接受上述和以下描述的兩個參數:
- wrap_element:它是必填參數,用於指定HTML元素以環繞所選元素的內容
- function:它是可選參數,用於指定返回包裝元素的函數。
- index:它返回元素的索引。
返回值:此方法返回具有應用更改的所選元素。
以下示例說明了jQuery中的wrapInner()方法:
範例1:本示例不包含可選參數。
<!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>
輸出:
在單擊div元素之前:
單擊div元素後:
範例2:
<!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>
輸出:
在單擊div元素之前:
單擊div元素後:
相關文章:
相關用法
- JQuery has()用法及代碼示例
- JQuery first()用法及代碼示例
- JQuery val()用法及代碼示例
- JQuery on()用法及代碼示例
- JQuery after()用法及代碼示例
- JQuery last()用法及代碼示例
- JQuery one()用法及代碼示例
- JQuery eq()用法及代碼示例
- JQuery animate()用法及代碼示例
- JQuery andSelf( )用法及代碼示例
- JQuery siblings()用法及代碼示例
- JQuery nextUntil()用法及代碼示例
- JQuery prevUntil()用法及代碼示例
- JQuery data()用法及代碼示例
- JQuery undelegate()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | wrapInner() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。