码迷,mamicode.com
首页 > 其他好文 > 详细

项目实战

时间:2016-05-02 21:13:43      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
        <style type="text/css">
            table{border-collapse: collapse; width: 100%;}
            table tr td{border: red solid 1px;  width: 50%; text-align: center;}
        </style>
    </head>
    <body>
        <table>
        </table>
        <script type="text/javascript">
            $.ajax({   
                type: "get",   
                  url:  "DB.json", 
                  datatype: "json",
                   success: function (data) {
                       for (var i=0; i<data.length; i++) {
                           $("table").append(
                               "<tr><td>"+data[i].name+"</td><td>"+data[i].age+"</td></tr>"
                           )
                       }
                   },
                   error:function () { alert("Ajax请求Json错误");}
               });
        </script>
    </body>
</html>

 

json

[
{"name": "小王",  "age": "10" },
{ "name": "小丁",  "age": "20" },
{ "name": "小红",  "age": "18" }
]

 

效果

技术分享

项目实战

标签:

原文地址:http://www.cnblogs.com/flyings/p/5453092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!