W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $.getJSON("/example/jquery/demo_ajax_json.js",function(result){ $.each(result, function(i, field){ $("p").append(field + " "); }); }); }); }); </script> </head> <body> <button>获得 JSON 数据</button> <p></p> </body> </html>