JSON 物件,可以使用Javascript 建立。讓我們來看看各種方式使用 Javascript建立JSON物件:
建立一個空的物件:
var JSONObj = {};
建立新的物件:
var JSONObj = new Object();
建立一個物件和屬性bookname 字串,屬性數值 price 的值。存取屬性通過使用 '.' 操作符:
var JSONObj = { "bookname ":"VB BLACK BOOK", "price":500 };
這是一個例子,它顯示了建立一個物件在 javascript 中使用JSON,下面的程式碼儲存為 json_object.htm :
<html> <head> <title>Creating Object JSON with JavaScript</title> <script language="javascript" > var JSONObj = { "name" : "tw511.com", "year" : 2005 }; document.write("<h1>JSON with JavaScript example</h1>"); document.write("<br>"); document.write("<h3>Website Name="+JSONObj.name+"</h3>"); document.write("<h3>Year="+JSONObj.year+"</h3>"); </script> </head> <body> </body> </html>
現在,讓我們嘗試開啟 json_object.htm 使用IE或其他任何支援 JavaScript 的瀏覽器,這將產生以下結果:
下面的例子顯示了如何建立一個陣列物件在javascript 中使用JSON中,儲存下面的程式碼 asjson_array_object.htm:
<html> <head> <title>Creation of array object in javascript using JSON</title> <script language="javascript" > document.writeln("<h2>JSON array object</h2>"); var books = { "Pascal" : [ { "Name" : "Pascal Made Simple", "price" : 700 }, { "Name" : "Guide to Pascal", "price" : 400 } ], "Scala" : [ { "Name" : "Scala for the Impatient", "price" : 1000 }, { "Name" : "Scala in Depth", "price" : 1300 } ] } var i = 0 document.writeln("<table border='2'><tr>"); for(i=0;i<books.Pascal.length;i++) { document.writeln("<td>"); document.writeln("<table border='1' width=100 >"); document.writeln("<tr><td><b>Name</b></td><td width=50>" + books.Pascal[i].Name+"</td></tr>"); document.writeln("<tr><td><b>Price</b></td><td width=50>" + books.Pascal[i].price +"</td></tr>"); document.writeln("</table>"); document.writeln("</td>"); } for(i=0;i<books.Scala.length;i++) { document.writeln("<td>"); document.writeln("<table border='1' width=100 >"); document.writeln("<tr><td><b>Name</b></td><td width=50>" + books.Scala[i].Name+"</td></tr>"); document.writeln("<tr><td><b>Price</b></td><td width=50>" + books.Scala[i].price+"</td></tr>"); document.writeln("</table>"); document.writeln("</td>"); } document.writeln("</tr></table>"); </script> </head> <body> </body> </html>
現在,讓我們嘗試開啟json_array_object.htm使用IE或其他任何支援 JavaScript 的瀏覽器,這將產生以下結果: