12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script src="./ajax.js"></script>
- <script>
- // var a = 10;
- // setTimeout(function(){
- // console.log(a)
- // }, 1000);
- // a++;
- // console.log(a)
-
- //callback hell 回调地狱
- ajaxFun("./data/a.json", function (res) {
- console.log(res)
- ajaxFun("./data/b.json", function (res) {
- console.log(res)
- ajaxFun("./data/c.json", function (res) {
- console.log(res)
- })
- })
- })
- </script>
- </body>
- </html>
|