我有一个字符串$html = ' <button onclick="js_func(this, "in this point")"> submit </button>'
,我想将一个字符串发送给我正在尝试与'/'' string '\'
和"/"" string "\"
一起使用的js函数,但尚未得到解决方案。请为我提供正确的解决方案。
答案 0 :(得分:2)
只需使用反斜杠将其转义,就像这样简单:
$html = ' <button onclick="js_func(this, \'in this point\')"> submit </button>'
答案 1 :(得分:0)
使用\
==>'<按钮onclick =“ js_func(this,\” in this point \“)”>提交'