< script type = 'text/javascript' >
$(function() {
$('#resultTable').DataTable({
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel'
]
});
}) <
/script>";
&#13;
我知道我们不应该混合js和php但是在这里我只需要知道,我把这个代码snipet放在生成表的php代码中,还是放在显示表和其他东西的索引页面中?我得到了下载和所有那些在样本表上工作,但似乎没有什么工作在这里。在这种情况下是否无法使用数据表?非常感谢你。
答案 0 :(得分:0)
如果它是数据表,那么该代码应该放在外部JS文件中
例如:scripts.js:
$(function() {
$('#resultTable').DataTable({
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel'
]
});
})
然后将其包含在包含#resultTable
的页面中OR
在控制#resultTable的文件顶部
我个人更喜欢尽可能地分开。