0

我有一个 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" />

但是,数据表仍然没有出现。我错过了什么吗?

4

1 回答 1

1

将 jquery 插件添加到您的页面

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
于 2013-09-10T10:11:25.783 回答