0

この単純なテーブルがあり、tbody は loadLogsTable(); でいっぱいです。関数

<table id="logsTable" style="width:100%;text-align:center;">
<thead>
<th style="width:9%;">Choose</th>
<th style="width:15%;">Ip</th>
<th style="width:15%;">Hostname</th>
<th style="width:50%;">Log</th>
<th style="width:15%;">Date</th>
</thead>
<tbody id="logData"></tbody>
</table>

loadLogsFunction は次のとおりです。

function loadLogsTable()
{
jQuery.ajax({
type: "POST",
async : true,
url: "classes/classesController.php",
data: { method: "getLogsList"},
contentType : ('application/x-www-form-urlencoded'),
dataType : "html" ,
success : function(data){
$("#logData").html(data);
}  
});
}

このテーブルを dataTables で初期化しましたが、ページ分割されず (ページごとに 10 行を選択しました)、テーブルのデータを表示できないようです。テーブルのデータも検索できません。

$(document).ready(function()
{  
loadLogsTable();

$('#logsTable').dataTable({  // Init pagination
"aoColumnDefs": [{ "bSortable": false, "aTargets": [ 0,1,2,3,4] } ],
"sPaginationType": "full_numbers" ,
"bLengthChange": false,
iDisplayLength": 10
});
});
4

2 に答える 2

0

mg1075 は正しい iDisplayLength に引用符がありませんでした。

http://jsfiddle.net/nr5Cw/2/

"<--missing

于 2013-06-10T00:52:19.550 に答える