当前位置: 编程技术>WEB前端
在每个匹配元素的外部插入新元素的方法
来源: 互联网 发布时间:2014-08-25
本文导语: 一、方法 wrap :把所有匹配的元素,用其他元素的结构化包裹起来 wrapAll : 把所有匹配的元素,用单个元素包裹起来 wrapInner : 把匹配元素的子类用html结构包裹起来 二、实例 (1)wrap 代码如下: Insert title here $(function() { $("d...
一、方法
wrap :把所有匹配的元素,用其他元素的结构化包裹起来
wrapAll : 把所有匹配的元素,用单个元素包裹起来
wrapInner : 把匹配元素的子类用html结构包裹起来
二、实例
(1)wrap
firebug显示结果:
(2)wrapAll
Insert title here
$(function() {
$("div a").wrapAll("");
});
firebug显示结果:
Insert title here
$(function() {
$("div a").wrapAll("");
});
(3)wrapInner
Insert title here
$(function() {
$("div").wrapInner("");
});
firebug显示结果:
wrap :把所有匹配的元素,用其他元素的结构化包裹起来
wrapAll : 把所有匹配的元素,用单个元素包裹起来
wrapInner : 把匹配元素的子类用html结构包裹起来
二、实例
(1)wrap
代码如下:
firebug显示结果:
代码如下:
(2)wrapAll
代码如下:
Insert title here
$(function() {
$("div a").wrapAll("");
});
firebug显示结果:
代码如下:
Insert title here
$(function() {
$("div a").wrapAll("");
});
(3)wrapInner
代码如下:
Insert title here
$(function() {
$("div").wrapInner("");
});
firebug显示结果:
代码如下: