cnblogs/dcrenl/Json与字符串互相转换.html
2024-09-24 12:43:01 +08:00

24 lines
1.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div><strong>jQuery插件支持的转换方式</strong>&nbsp;</div>
<div>&nbsp;</div>
<div>$.parseJSON( jsonstr ); //jQuery.parseJSON(jsonstr),可以将json字符串转换成json对象&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><strong>浏览器支持的转换方式(Firefoxchromeoperasafariie9ie8)等浏览器:&nbsp;</strong></div>
<div>&nbsp;</div>
<div>JSON.parse(jsonstr); //可以将json字符串转换成json对象&nbsp;</div>
<div>JSON.stringify(jsonobj); //可以将json对象转换成json对符串&nbsp;</div>
<div>&nbsp;</div>
<div>ie8(兼容模式),ie7和ie6没有JSON对象推荐采用JSON官方的方式引入json.js。&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><strong>Javascript支持的转换方式&nbsp;</strong></div>
<div><strong>&nbsp;</strong></div>
<div>eval_r('(' + jsonstr + ')'); //可以将json字符串转换成json对象,注意需要在json字符外包裹一对小括号&nbsp;</div>
<div>ie8(兼容模式),ie7和ie6也可以使用eval_r()将字符串转为JSON对象但不推荐这些方式这种方式不安全eval会执行json串中的表达式。&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><strong>JSON官方的转换方式&nbsp;</strong></div>
<div><strong>&nbsp;</strong></div>
<div>http://www.json.org/提供了一个json.js,这样ie8(兼容模式),ie7和ie6就可以支持JSON对象以及其stringify()和parse()方法;&nbsp;</div>
<div>可以在https://github.com/douglascrockford/JSON-js上获取到这个js一般现在用json2.js。</div>
<div>&nbsp;</div>