我有这个来剥离 p 标签,但它没有任何样式:
.replace('<p>','').replace('</p>','');
怎么能做到这一点?
如果要删除p
标签,请执行以下操作:
$('someSelector').remove('p');
或者如果你想解开p
内容然后做(这似乎是你想要做的):
$('someSelector').find('p').contents().unwrap(); //keep the content of p there but remove the p wrapper.
使用正则表达式版本的替换:
.replace(/<p.*>/g,'').replace('</p>', '');