このデータテーブルの使用法に従ってください
mRender
最新バージョンのデータテーブルを使用する場合は、またはを使用することをお勧めしmData
ます。古いバージョンが使用する場合fnRender
。
// Create a comma separated list from an array of objects
$(document).ready(function() {
var oTable = $('#example').dataTable({
"sAjaxSource": "sources/deep.txt",
"aoColumns": [{
"mData": "engine"
},{
"mData": "browser"
},{
"mData": "platform",
"mRender": "[, ].name"
}]
});
});
// Use as a function to create a link from the data source
$(document).ready(function() {
var oTable = $('#example').dataTable({
"aoColumnDefs": [{
"aTargets": [0],
"mData": "download_link",
"mRender": function(data, type, full) {
return '<a href="' + data + '">Download</a>';
}
}]
});
});