我正在尝试删除<p>
内的<h3>
标记而不会丢失内容。
<h3 class="blog-heading">
<p>This is content</p>
</h3>
我尝试使用unwrap()
,remove()
和empty()
函数,但这些函数也会删除我的数据。
$('.blog-heading').find('p').remove();
任何人都可以在jquery中指导我吗?我该如何解决这个问题。我会很感激。谢谢。
答案 0 :(得分:3)
您要解开p
内容:
$('.blog-heading p').contents().unwrap();
答案 1 :(得分:0)
尝试以下
private string descriptionField;
/// <remarks/>
public string Description{
get {
return this.descriptionField;
}
set {
this.descriptionField= value;
}
}