📅  最后修改于: 2020-11-26 01:27:27             🧑  作者: Mango
jQuery wrapInner()方法用于将HTML结构包装在匹配元素集中每个元素的内容周围。此方法可以接受可以传递给$()工厂函数的任何字符串或对象。
句法:
$(selector).wrapInner(wrappingElement,function(index))
Parameter | Description |
---|---|
wrappingElement | It is a mandatory parameter. It specifies what HTML elements are to be wrapped around the content of each selected element. Its possible values are:
|
Function(index) | It is an optional parameter. It specifies a function that returns the wrapping element.
|
让我们以一个示例来演示jQuery wrapInner()方法。
Hello Guys!
This is javatpoint.com
您还可以使用多个元素来包装指定的内容。
Hello Guys!
This is javatpoint.com
在上面的示例中,我们总共使用了三个标签:
The jQuery Example
Click on any square below to see the result:
Javatpoint.com
JAVA
SQL
HTML