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

GTA项目 三, 使用 bootstrap table展示界面,使得data和UI分离

时间:2015-02-03 01:49:26      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

/*
* bootstrap-table - v1.5.0 - 2014-12-12
* https://github.com/wenzhixin/bootstrap-table
* Copyright (c) 2014 zhixin wen
* Licensed MIT License
*/

<table id="tblCountry"  >
   <thead>
    <tr>
     <th data-field="Code">Code</th>
     <th data-field="Name">Country</th>
    </tr>
   </thead>
  </table>
<script type="text/javascript">

    $.get("http://localhost:5920/GTA/Country", function (data, status) {
        $(‘#tblCountry‘).bootstrapTable({
                data: data.Country
        });
    });

    </script>

  

GTA项目 三, 使用 bootstrap table展示界面,使得data和UI分离

标签:

原文地址:http://www.cnblogs.com/zitjubiz/p/4269038.html

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