我有一个表格单元格,其中包含包含在<p>
标签中的内容:
<td class=" address"><p>
Content goes here
</p></td>
我希望<p>
删除标签,所以它看起来像这样:
<td class=" address">
Content goes here
</td>
我尝试了以下 jQuery,但没有成功。有人可以指出我正确的方向吗?
$('.address p').replaceWith('');
我有一个表格单元格,其中包含包含在<p>
标签中的内容:
<td class=" address"><p>
Content goes here
</p></td>
我希望<p>
删除标签,所以它看起来像这样:
<td class=" address">
Content goes here
</td>
我尝试了以下 jQuery,但没有成功。有人可以指出我正确的方向吗?
$('.address p').replaceWith('');
$(function() {
$("td.address > p").contents().unwrap();
});
$('.address p').replaceWith(function() {
return $(this).html();
});