Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 AJAX 以 JSON 数据类型格式捕获数据,然后将该数据显示到网页。谁能给我一个可以效仿的例子?
把它放在你的 JavaScript 中(希望你使用的是 jQuery):
$.get(yourUrl, function (data) { $(body).html(data); }
该页面将显示您收到的数据。从那里您可以编辑回调函数以将数据放在应该去的地方。