fork download
  1. <html>
  2. <body>
  3.  
  4. <div id="hh">Hello</div>
  5. <div id="koko"></div>
  6.  
  7. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  8. <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
  9. <script type="text/javascript">
  10.  
  11. $(function(){
  12. $.getJSON("./data.json", function(data){
  13. $.each(data, function(){
  14. alert(this.pk); //1, 2, 3と出る
  15. });
  16. });
  17. }); //Last
  18.  
  19. </script>
  20. </body>
  21. </html>
Runtime error #stdin #stdout #stderr 0.02s 4980KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
prog.js:16: SyntaxError: missing } in XML expression:
prog.js:16:     });
prog.js:16: ......^