1

我不确定我的字符串中需要转义哪些字符。我的 PHP 代码给出了字符串参数,但有时它有引号和双引号,我不知道该怎么处理。

onclick="eventBox('This is the string ' // " "')"
4

2 回答 2

3

引号 ( ") 应替换为". 反斜杠 ( \) 附加到'.

onclick="eventBox('This is the string \' // " "')"
于 2012-11-20T22:35:23.940 回答
1

您将需要转义引号或对其进行编码,以便正确解析。

onclick="eventBox('This is the string \' // " "')"

否则会因为引号不匹配而导致解析错误

于 2012-11-20T22:35:31.693 回答