数据表创建问题

时间:2013-09-10 10:04:35

标签: jquery

我有一个HTML表格:

    <table id="TabId" style="width: 100%; border: 0; cellspacing: 0; cellpadding: 0;" class="margin-8">
            <tr>
            <th style="width: 5%;">Select</th>
            <th style="width: 5%;">ID</th>
            </tr>
            <c:forEach var="vp" items="${vpList}" varStatus="rowCounter">
              <tr>
                .... tds here ....
              </tr>
            </c:forEach>
   </table>

我有代码:

$("#TabId").dataTable
     ({
         "sPaginationType" : "full_numbers",
         "bProcessing" : true,
         "bJQueryUI" : true,
         "bRetrieve" :true
     });

我收录了以下文件:

<script src="/tool/js/jquery.dataTables.min.js" type="text/javascript"></script>
<link href="/tool/css/demo_table_jui.css" rel="stylesheet" type="text/css" />
<link href="/tool/css/demo_table.css" rel="stylesheet" type="text/css" />

但是,数据表还没有到来。我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

将jquery插件添加到您的页面

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>