我正在使用jQuery數據表插件,我在我的html頁面上有一個表,我不想排序,但我使用插件來分頁結果,也有verbage如果表中沒有任何東西。使用(「bSort」:false)阻止表進行排序時,我沒有任何問題,但仍然會使表格的標題可點擊,這可能會讓用戶感到沮喪,因爲點擊後沒有變化。下面是我使用的插件:http://datatables.net/,這裏是我的HTML:關於非排序jQuery數據表的問題
<table align="center" id="t1" width="57%">
<thead>
<tr>
<th class="headerClass" width="12%">Type</th>
<th class="headerClass">Description</th>
<th class="headerClass" width="3%">Campus</th>
<th class="headerClass" width="14%">Date </th>
</tr>
</thead>
<tbody>
<tr>
<td class="normal"><%=lostFound%></td>
<td class="normal"><%=lostDesc%></td>
<td class="normal"><%=lostLoc%></td>
<td class="normal"><%=lostDate%></td>
</tr>
</tbody>
</table>
這裏是我的JS:
var $t1 = $("#t1");
$t1.dataTable({
"bSort": false,
"oLanguage" : bsLfReq.O_LANGUAGE,
"bLengthChange": false,
"bFilter": false,
"bAutoWidth": false,
"iDisplayLength": 3,
"bInfo": false
});
所以基本上我想表仍然使用數據表插件,但沒有標題可點擊。這可能嗎?
你應該提到你使用jQuery的這個插件 - > http://www.datatables.net/ – timbooo 2011-05-25 15:07:29
更新了,謝謝。 – Dan 2011-05-25 15:16:36