猿问

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

求个例子 

19990000
浏览 1019回答 2
2回答

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

orionwei

json模拟是什么意思、、、
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答