求个例子
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:// 开头。
添加回答
举报
0/150
提交
取消