// 先判断是否是200
// 获取数据
// 返回数据
// var students=cls.student; // for (let index = 0; index < students.length; index++) { // const stu = students[index]; // $(".data tbody").append("<tr><td>"+stu.id+"</td><td>"+stu.name+"</td></tr>"); // } // }else{ // console.log(data.msg); // } // }, // error:function(res){ // console.log(res); // } // }) }) 还可以用另一种方法: <script> $(function(){ $.get("./data.json",function(data){ if(data.status===200){ var cls=data.data; $("legend").text(cls.name);
var students=cls.student; for (let index = 0; index < students.length; index++) { const stu = students[index]; $(".data tbody").append("<tr><td>"+stu.id+"</td><td>"+stu.name+"</td></tr>"); } }else{ console.log(data.msg); } }) //url [data] success [dataType] //$.post() }) 最后显示内容 body的内容: <legend></legend> <table class="data"> <thead> <td>id</td> <td>name</td> </thead> <tbody> <!-- <tr></tr> --> </tbody> </table> <legend></legend> <table class="data"> <thead> <td>id</td> <td>name</td> </thead> <tbody> <!-- <tr></tr> --> </tbody> </table>