26

"\"Javascriptに置き換えたい。

私は持っている:

text = text.toString().replace("\"", '\\"')

結果:

\\"
4

4 に答える 4

49

これを試して:

text = text.toString().replace(/"/g, '\\"')

またはこれ:

text = text.toString().replace('"', '\\"')
于 2012-07-05T14:57:01.670 に答える
1

これは次のようになります。

text = text.toString().replace("\"", '\\\"');

基本的に、「\」と「"」の両方を\でエスケープする必要があります

于 2012-07-05T15:00:51.047 に答える