Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的 PHP JSON 编码字符串:-
圣约翰
我想把它改成
jQuery 脚本中的圣约翰。
我试过了:-
data[i].name.replace("[\']","'"); data[i].name.replace(/\'/g,"'");
仍然给我SAINT JOHN\'S。我该如何处理特殊字符替换?
您还必须在单引号之前转义反斜杠 。\ '
\
'
现场演示
data[i].name.replace(/\\\'/g,"'")
您可以将 \ 替换为空字符串,但它也可以替换其他反斜杠。