Javascript过滤引号 - 错误

时间:2017-05-19 13:25:07

标签: javascript json api filter

我正在编写JSON API调用,我正在获取html字符串

即:

"content":"<p>Being a designer is like being a porn star. 
You&#8217;re hot &#038; popular for a year or two, 
then everyone goes off and finds something new to screw around too.  <\/p>\n"

我需要在没有HTML的情况下获取此字符串,因此我使用了这个:

n = e.content.replace(/(<([^>]+)>)/gi, "")

但是当字符串是右单引号’ &#8217;时,它将结束字符串。

请问,如何将此引号与其他符号一起过滤/替换?当我添加引号时,它停止过滤所有内容。

0 个答案:

没有答案