我有一個類似的表:隱藏/顯示Datatables插件的列?
<table id="table_id">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>etc</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1 Data 1</td>
<td>Row 1 Data 2</td>
<td>etc</td>
</tr>
<tr>
<td>Row 2 Data 1</td>
<td>Row 2 Data 2</td>
<td>etc</td>
</tr>
</tbody>
</table>
我希望能夠做的就是把某種形象或鏈接的隱藏和顯示列在<th>
什麼。當用戶點擊隱藏列時,我想將<th>
的內部文本放在div中,當點擊div時,我希望用戶能夠點擊自己選擇的列並將其放回該表並將其從div中刪除。
我得到了datatables插件工作,並在網站上,它有一個隱藏/顯示列的樣本,但與外部鏈接。我能夠添加一個鏈接來隱藏/顯示一列,但這裏是我的問題:
我不知道如何獲得被點擊的索引或列。 我不知道如何使用jquery從div中刪除它。當我點擊顯示/隱藏時,它將它放入div中,但隨後每次點擊都會重複,我也可以在div中單擊它,並根據當前狀態顯示/隱藏表格。
<script type="text/javascript">
$(document).ready(function() {
$('#datatable').dataTable();
$('.showhide').live('click', function() {
var index = $('#datatable th').index();
fnShowHide(index);
});
});
function fnShowHide(iCol) {
var oTable = $('#datatable').dataTable();
var bVis = oTable.fnSettings().aoColumns[iCol].bVisible;
oTable.fnSetColumnVis(iCol, bVis ? false : true);
var index = $('#datatable td').index();
console.log(index);
$('#columns').append('<a href="#">' + oTable.fnSettings().aoColumns[index].sTitle + '<a/>');
}
</script>
<div id="columns"><h4>Columns</h4></div>
<table id="datatable" class="display">
<thead>
<tr>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
我遺漏了一些表格數據。
你試過了......什麼? – 2013-05-02 23:20:00
@ Ek0nomik - 已更新 – Xaisoft 2013-05-02 23:23:30
如果您發佈了您嘗試過的代碼,這將是有益的。調試起來更容易。 – 2013-05-02 23:24:55