尝试将此 json 文件中的数据附加到 html doc。这是脚本:
$(document).ready(function() {
  $.ajax({
    type: "GET",
    url: "Beer.json",
    dataType: "json",
    success: processBeer,
    error: function(){ alert("error"); }
  });
  function processBeer(data){
    $(".box").append("Hello");
  }
}
这是 HTML:
<div class="box" id='d'>
</div>