如何在双引号内使用单引号而在双引号内已使用双引号?

时间:2018-06-25 13:28:09

标签: javascript php

我有一个字符串$html = ' <button onclick="js_func(this, "in this point")"> submit </button>',我想将一个字符串发送给我正在尝试与'/'' string '\'"/"" string "\"一起使用的js函数,但尚未得到解决方案。请为我提供正确的解决方案。

2 个答案:

答案 0 :(得分:2)

只需使用反斜杠将其转义,就像这样简单:

$html = ' <button onclick="js_func(this, \'in this point\')"> submit </button>'

答案 1 :(得分:0)

使用\ ==>'<按钮onclick =“ js_func(this,\” in this point \“)”>提交'


tutorial