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.
我对函数 html() 有问题,来自 JSON 的对象的接收,data.text 类型,其中包含带引号的文本并以这种方式打印:obj.html(data.text)
obj.html(data.text)
字符串按原样打印,不转换"引号",我需要打印引号符号。
"
"
对不起我的英语不好。
正如你可以通过这个 fiddle看出的那样,.html('"')确实会产生双引号。确保您没有"从服务器返回类似的东西;你可能在某种程度上过度逃避。
.html('"')
"