为了账号安全,请及时绑定邮箱和手机立即绑定

谁能给写个Ajax 用json模拟 的例子!

谁能给写个Ajax 用json模拟 的例子!

19990000 2016-11-06 00:35:07
求个例子 
查看完整描述

2 回答

?
0101

TA贡献11条经验 获得超3个赞

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>jQuery ajax 获取本地json文件数据</title>
</head>
<body>
</body>
<script src="./jquery.min.js"></script>
<script>
  $(function() {
    $.get('./data.json', function(res) {
      console.log(res);
      // 获取到数据后,显示到页面上
      document.write(res.name);
    })
  })
</script>
</html>

这是 html 内容,需要依赖jquery。下面是 data.json 内容

{
  "name": "imooc",
  "url": "http://www.imooc.com/"
}

重点是:要在服务器环境下打开!意味着你的浏览器地址不能是 file:// 开头。

查看完整回答
反对 回复 2016-11-06
?
orionwei

TA贡献23条经验 获得超2个赞

json模拟是什么意思、、、

查看完整回答
反对 回复 2016-11-06
  • 2 回答
  • 1 关注
  • 1018 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信