1
我有一個有3個表,使用數據表,問題是數據表不能處理超過1個表,我已經在搜索的解決方案,我所得到的是使用自定義的SSP數據表頁:多個服務器端的數據表
但是,我想問的是,如果有更簡單的方法從這個問題?
- 這是網頁切片時表示基於按鈕
<div class="panel-body">
<div class ="row">
<div class ="text-center alert col-md-12">
<a class="btn btn-primary" href="#table_assall" data-toggle="tab">All Assets List</a>
<a class="btn btn-primary" href="#table_asborrow" data-toggle="tab">Used Assets</a>
<a class="btn btn-primary" href="#table_asbroken" data-toggle="tab">Damaged Assets</a>
</div>
</div>
<div class="tab-content">
<div id="table_assall" class="tab-pane fade active in">
<div class="table-responsive">
<table class="display" width="100%" cellspacing="0" id="">
*thead source code*
</table>
</div>
</div>
<div id="table_asborrow" class="tab-pane fade">
<div class="table-responsive">
<table class="display" width="100%" cellspacing="0" id="">
*thead source code*
</table>
</div>
</div>
<div id="table_asbroken" class="tab-pane fade">
<div class="table-responsive">
<table class="display" width="100%" cellspacing="0" id="">
*thead source code*
</table>
</div>
</div>
</div>
- 這3切換服務器端表是JS文件觸發節目表查詢
$(document).ready(function(){
$('table.display').DataTable({
lengthChange: true,
info: false,
fixedHeader: true,
select: true,
"bAutoWidth": false,
"bProcessing": true,
"serverSide": true,
"ajax":{
url :"tableresponses.php", // json datasource
type: "post", // type of method , by default would be get
error: function(){ // error handling code
$("#astab_processing").css("display","none");
}
}
});
});
所以是更多鈔票來基於按鈕點擊更改ajax網址?
代碼不顯示任何錯誤,但我的表卡在「處理」(顯示錶之前的加載狀態) –
該表現在顯示,但該按鈕沒有觸發數據ajax,我在瀏覽器控制檯檢查它沒有發佈數據.. –
這些按鈕是動態添加的嗎? –