0101
<!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:// 开头。