我在網上發現了DataTables插件,並且我一直試圖在過去的4個小時內安裝它,不幸的是我無法這樣做。如何正確安裝DateTables插件?
meta標籤我添加
<style type="text/css" title="currentStyle">
@import "css/dataTable/demo_page.css";
@import "css/dataTable/demo_table_jui.css";
@import "css/dataTable/jquery-ui-1.8.4.custom.css";
</style>
<script type="text/javascript" src="/cms_testing/js/jquery.dataTables.js"></script>
是上述 這裏是我迄今
<script>
$(function(){
$('#internalActivities').dataTable();
});
</script>
文件做確實存在,我已經做了仔細檢查。
這裏是我的HTML表格
<table id="internalActivities">
<thead>
<tr><th colspan="3">Internal Activities</th></tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;"><a href="display-call.php?account_id=9&call_id=1128"><strong>Initial Development</strong></a></td>
<td style="text-align: center;">05/23/2013 06:19 AM</td>
<td style="text-align: center;">name</td>
</tr>
<tr>
<td colspan="3"><em>Call Result: Message Delivered - Follow up in 21 days</em>
<br /><p class="sub_note">Moving to bottom of list</p>
</td>
</tr>
<tr>
<td style="text-align: left;"><a href="display-call.php?account_id=9&call_id=1052"><strong>Stage 2 Development</strong></a></td>
<td style="text-align: center;">04/19/2013 11:05 AM</td>
<td style="text-align: center;">name</td>
</tr>
<tr>
<td colspan="3"><em>Call Result: Partial Discussion</em>
<br /><p class="sub_note">awef</p>
</td>
</tr>
</tbody>
</table>
我沒有得到任何錯誤,但它不顯示的表,因爲它應該。
您是否加載了jQuery? – 2013-06-22 00:49:30
是的,我有。事實上,我正在使用更多的jQuery,他們正在工作 – Mike