标签: jquery css class
我有这样的HTML。
<div class="wrapper"> <input class="myClass" ....> </div>
我想用class&#39; wrapper&#39;删除包装div。这样输出就会是。
<input class="myClass" ....>
如果用jquery完成它会很棒。
答案 0 :(得分:7)
使用.unwrap()。试试这个:
.unwrap()
$('.wrapper').children().unwrap();
<强> DEMO 强>
答案 1 :(得分:1)
在jquery中使用 .replaceWith()
$('.wrapper').replaceWith(function() { return $('input ', this); });
Fiddle