码迷,mamicode.com
首页 > Web开发 > 详细

js_JSON

时间:2017-05-26 18:57:58      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:技术   nbsp   ext   img   body   utf-8   type   分享   htm   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<h2>为 JSON 字符串创建对象</h2>
<p id="demo"></p>
<script>
var text = ‘{ "sites" : [‘ +
‘{ "name":"Runoob" , "url":"www.runoob.com" },‘ +
‘{ "name":"Google" , "url":"www.google.com" },‘ +
‘{ "name":"Taobao" , "url":"www.taobao.com" } ]}‘;

obj = JSON.parse(text);
document.getElementById("demo").innerHTML = obj.sites[1].name + " " + obj.sites[1].url;
</script>

</body>
</html>

==========================================================

运行结果:

为 JSON 字符串创建对象

Google
www.google.com

==========================================================

技术分享

 

js_JSON

标签:技术   nbsp   ext   img   body   utf-8   type   分享   htm   

原文地址:http://www.cnblogs.com/0914lx/p/6909996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!