json字符串对象
Posted xiaozhou223
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json字符串对象相关的知识,希望对你有一定的参考价值。
1、将字符串转为json对象:JSON.parse();
2、json对象转字符串:JSON.stringify();
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>创建json字符串对象</title> </head> <body> </body> <script src="js/jquery-2.1.0.js"></script> <script type="text/javascript"> $(function() // 字符串 var str=‘"name":"小明","age":18‘; // 将字符串转为json对象 var jsonstr=JSON.parse(str); console.log(typeof(jsonstr)) // json对象转字符串 var string=JSON.stringify(jsonstr); console.log(typeof(string)) ); </script> </html>
以上是关于json字符串对象的主要内容,如果未能解决你的问题,请参考以下文章
前端js把json字符串转json对象 java对象转json对象命令