1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <title>无标题文档</title> 6 </head> 7 8 <body> 9 10 //JSON是一种数据格式 11 //JSON比较像php里面的关联数组,它里面存的内容也是key和value成对存在的 12 13 14 </body> 15 <script type="text/javascript"> 16 17 var js = { 18 "one":"hello", 19 "two":"world", 20 "three":"汉族" 21 }; 22 //alert(js["two"]);//数组方式取也是行的 23 //alert(js.three.n2); 24 25 //使用foreach的形式来遍历JSON数据 26 for(var k in js) 27 { 28 alert(js[k]); 29 } 30 31 // XML JSON 32 33 34 </script> 35 </html>
时间: 2024-10-25 04:38:51