2010年12月13日 星期一

[JavaScript] 將JSON data寫入新開的視窗

例如我要把產生的JSON Code, 顯示在新開的視窗中


<script type="text/javascript" src="http://www.json.org/json.js"></script> 
<script type="text/javascript"> 
 
var Beatles = new Object();
Beatles.Country = "England";
Beatles.YearFormed = 1959;
Beatles.Style = "Rock'n'Roll";
 
function prevJSON() {
  var win = window.open(" ", "_new");
  win.document.open();
  win.document.write("<pre>" + JSON.stringify(Beatles, null, '\t') + "</pre>"); }
</script> 
<input type="button" value="preview JSON code" onClick="prevJSON()"> 


References:
http://www.learn-ajax-tutorial.com/Json.cfm
Related Posts Plugin for WordPress, Blogger...