fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <p>修改 JSON 对象的值。</p> <p id="demo"></p> <script> var myObj, i, x = ""; myObj = { "name":"paoo", "alexa":10000, "sites": { "site1":"www.fmpq.com", "site2":"m.fmpq.com", "site3":"c.fmpq.com" } } myObj.sites.site1 = "www.google.com"; for (i in myObj.sites) { x += myObj.sites[i] + "<br>"; } document.getElementById("demo").innerHTML = x; </script> </body> </html>
运行结果