标签:技术 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>
==========================================================
运行结果:
Google
www.google.com
==========================================================
标签:技术 nbsp ext img body utf-8 type 分享 htm
原文地址:http://www.cnblogs.com/0914lx/p/6909996.html