欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript 中 JSON.parse 函数 和 JSON.stringify 函数

程序员文章站 2022-03-13 18:50:47
1. json.parse 函数: 使用 json.parse 可将 json 字符串转换成对象。

1. json.parse 函数: 使用 json.parse 可将 json 字符串转换成对象。

<!doctype html>
<html>
 <head>
 <meta charset="utf-8">
 <title>document</title>
 <script type="text/javascript">
  var jsontext = '{"name":"xiaohuzi","age":"26","email":"xiaohuzi@test.com","phone":"123456789"}';
  var p = json.parse(jsontext);
  alert(p.name + ", " + p.age+", "+p.email+", "+p.phone);
 </script>
 </head>
 <body>

运行结果:

JavaScript 中 JSON.parse 函数 和 JSON.stringify 函数

2. json.stringify 函数:  可将 javascript 对象转换为json表示字符串。

<!doctype html>
<html>
 <head>
 <meta charset="utf-8">
 <title>document</title>
 <script type="text/javascript">
  var person = new object();
  person.name = "xiaohuzi";
  person.age = 26;
  person.email="xiaohuzi@test.com";

  var jsontext = json.stringify(person);

  alert(jsontext);
 </script>
 </head>
 <body>

运行结果

JavaScript 中 JSON.parse 函数 和 JSON.stringify 函数

总结

以上所述是小编给大家介绍的javascript 中 json.parse 函数 和 json.stringify 函数,希望对大家有所帮助