得到错误"无法阅读财产'分机'未定义"在Jquery Datatable中

时间:2016-02-19 04:05:08

标签: datatables

我正在尝试在jquery数据表中显示print按钮。但是得到的错误就像"无法阅读财产'分机'未定义的。

我使用的脚本是



script_tag('www/js/data-tables/buttons.html5.js').
script_tag('www/js/data-tables/buttons.print.js').
script_tag('www/js/data-tables/dataTables.buttons.js').
script_tag('www/js/data-tables/jquery.dataTables.js')




和css,



link_tag('www/js/data-tables/buttons.dataTables.css')




1 个答案:

答案 0 :(得分:1)

以相反的顺序声明脚本:

script_tag('www/js/data-tables/jquery.dataTables.js')
script_tag('www/js/data-tables/dataTables.buttons.js').
script_tag('www/js/data-tables/buttons.html5.js').
script_tag('www/js/data-tables/buttons.print.js').

dataTables扩展程序想要访问$.fn.DataTable ext ,如果尚未包含jquery.dataTables.js,则不会显示该扩展名。