1

我有这个来剥离 p 标签,但它没有任何样式:

.replace('<p>','').replace('</p>','');

怎么能做到这一点?

4

2 回答 2

3

如果要删除p标签,请执行以下操作:

$('someSelector').remove('p');

或者如果你想解开p内容然后做(这似乎是你想要做的):

$('someSelector').find('p').contents().unwrap(); //keep the content of p there but remove the p wrapper.

小提琴

于 2013-09-23T01:41:04.413 回答
0

使用正则表达式版本的替换:

.replace(/<p.*>/g,'').replace('</p>', '');
于 2013-09-23T02:05:14.560 回答