admin管理员组文章数量:1345295
My JSON response looks like:
{rc: "200", test: "", user: "<div class='sub1'>
<div class='avatar'>
<a href='/blah'>blah</a><br />
<strong>0</strong>
</div>
<div class='sl'>
<p>
you droppped the ball this time
</p>
</div>
<div class='clear'>
</div>
</div>"}
Update
I updated my code to put quotes on the key values, still doesn't work:
{"rc": "200", "m" : "", "o": "<div class='s1'>
<div class='avatar'>
<a href='\/asdf'>asdf<\/a><br \/>
<strong>0<\/strong>
<\/div>
<div class='sl'>
<p>
444444444
<\/p>
<\/div>
<div class='clear'>
<\/div>
<\/div>"}
My JSON response looks like:
{rc: "200", test: "", user: "<div class='sub1'>
<div class='avatar'>
<a href='/blah'>blah</a><br />
<strong>0</strong>
</div>
<div class='sl'>
<p>
you droppped the ball this time
</p>
</div>
<div class='clear'>
</div>
</div>"}
Update
I updated my code to put quotes on the key values, still doesn't work:
{"rc": "200", "m" : "", "o": "<div class='s1'>
<div class='avatar'>
<a href='\/asdf'>asdf<\/a><br \/>
<strong>0<\/strong>
<\/div>
<div class='sl'>
<p>
444444444
<\/p>
<\/div>
<div class='clear'>
<\/div>
<\/div>"}
Share
Improve this question
edited Jun 15, 2009 at 2:33
mrblah
asked Jun 14, 2009 at 22:56
mrblahmrblah
104k142 gold badges317 silver badges424 bronze badges
3
- nothing in this example. – Itay Moav -Malimovka Commented Jun 14, 2009 at 23:02
- possible duplicate of In jQuery, I am returning HTML in a JSON result, what do I have to escape? – John Commented Apr 11, 2012 at 10:18
- test it with jsonformatter.curiousconcept. to check which lines are breaking. new line (\n) can be a problem – Junior Mayhe Commented Sep 23, 2012 at 20:20
4 Answers
Reset to default 4I used jsonlint to validate your latest example, and the line breaks are what it flagged. When they were removed, it validated.
{
"rc": "200",
"m" : "",
"o": "<div class='s1'><div class='avatar'><a href='\/asdf'>asdf<\/a><br \/><strong>0<\/strong> <\/div> <div class='sl'><p>444444444<\/p><\/div><div class='clear'><\/div><\/div>"
}
In your example, you won't have to escape anything. But, if the HTML es with double quotes, you'll have to escape them, obviously.
You're HTML values are OK, but the keys of the JSON object must be enclosed in quotes.
From the JSON RFC:
2.2. Objects
An object structure is represented as a pair of curly brackets
surrounding zero or more name/value pairs (or members). A name is a
string.
and
2.5. Strings
The representation of strings is similar to conventions used in the C
family of programming languages. A string begins and ends with
quotation marks.
Also, if you output this JSON object inside the script tags of an HTML page, you must escape the "</" sequence of HTML closing tags, as per this appendix in the HTML 4 specification.
You don't need to escape HTML in a javascript string. What exactly are you trying to do/what is the problem? Take a look at the escape()
function - it might help.
本文标签: javascriptWhat do I need to escape in my HTML (JSON response)Stack Overflow
版权声明:本文标题:javascript - What do I need to escape in my HTML (JSON response) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743769392a2535842.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论