博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
wrap--添加及去除外层dom的方法
阅读量:5357 次
发布时间:2019-06-15

本文共 1543 字,大约阅读时间需要 5 分钟。

Wrap an HTML structure around each element in the set of matched elements. .wrap()

Wrap an HTML structure around all elements in the set of matched elements. .wrapAll()
Wrap an HTML structure around the content of each element in the set of matched elements. .wrapInner()
Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place. .unwrap()

Hello
Goodbye
$('.inner').wrap('
');
Hello
Goodbye
Hello
Goodbye
$('.inner').wrapAll('
');
Hello
Goodbye
Hello
Goodbye
$('.inner').wrapInner('
');
Hello
Goodbye

  

转载于:https://www.cnblogs.com/longze/archive/2013/04/19/3029960.html

你可能感兴趣的文章
较快的maven的settings.xml文件
查看>>
随手练——HDU 5015 矩阵快速幂
查看>>
Java变量类型,实例变量 与局部变量 静态变量
查看>>
mysql操作命令梳理(4)-中文乱码问题
查看>>
Python环境搭建(安装、验证与卸载)
查看>>
一个.NET通用JSON解析/构建类的实现(c#)
查看>>
如何辨别一个程序员的水平高低?是靠发量吗?
查看>>
linux的子进程调用exec( )系列函数
查看>>
MySQLdb & pymsql
查看>>
zju 2744 回文字符 hdu 1544
查看>>
【luogu P2298 Mzc和男家丁的游戏】 题解
查看>>
前端笔记-bom
查看>>
上海淮海中路上苹果旗舰店门口欲砸一台IMAC电脑维权
查看>>
Google透露Android Market恶意程序扫描服务
查看>>
给mysql数据库字段值拼接前缀或后缀。 concat()函数
查看>>
迷宫问题
查看>>
【FZSZ2017暑假提高组Day9】猜数游戏(number)
查看>>
泛型子类_属性类型_重写方法类型
查看>>
练习10-1 使用递归函数计算1到n之和(10 分
查看>>
Oracle MySQL yaSSL 不明细节缓冲区溢出漏洞2
查看>>