Home > Article > Web Front-end > jquery element wrapping
jquery element wrap
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>元素包裹</title> </head> <body> <a href="https://www.tmall.com">天猫</a> <a href="https://taobao.com">淘宝</a> <a href="https://www.jd.com/">京东</a> <a href="https://www.suning.com">苏宁</a> <p>网上购物:</p> <button>wrap()</button> <button>wrapIner()</button> <button>wrapAll()</button> <button>unwrap()</button> </body> </html>
* 1.wrap(content):
* Function: wrap each node
* Parameter: content or element
$('button:eq(0)').click(function(){ //用法一.用一个新标签来包裹目标元素 // $('a').wrap($('<li>')) //简写: $('a').wrap('<li>') //用法二.用已存在的标签来包裹目标节点 // $('a').wrap($('p')) })
* 2.wrapInner(content):
* Function: wrap the content of each node
* Parameter: content or element
$('button:eq(1)').click(function(){ //用法一.用一个新标签来包裹目标节点内容 $('li').wrapInner('<strong>') //用法二.用已存在的标签来包裹目标节点内容 $('li').wrapInner($('p')) })
* 3.wrapAll( content):
* Function: Wrap a group of nodes
* Parameters: Content or element
$('button:eq(2)').click(function(){ //用法一.用一个新标签来包裹目标节点内容 $('li').wrapAll('<ul style="background-color: wheat">') //用法二.用已存在的标签来包裹目标节点内容,给<li>再套一个<div> $('li').wrapAll($('<div style="background-color: cyan">')) })
* 4.unwrap(content):
* Function: Delete the parent element on the node
* Parameters: None
$('button:eq(3)').click(function(){ $('li').unwrap() //可以一直往上走 $('li').unwrap().unwrap() })
The above is the detailed content of jquery element wrapping. For more information, please follow other related articles on the PHP Chinese website!