我正在尝试使用jquery datatables plugin并关注the FixedColumns example
但是我收到错误Error: ReferenceError: FixedColumns is not defined Line: 64
。我正在尝试使最左边的列固定,所以当你水平滚动时,你仍然可以看到第一列。
我已设置显示错误的example in jsbin。 FixedColumns是一个单独的插件下载吗?如果是的话,我找不到它。任何人都能解释为什么我的代码不起作用?
答案 0 :(得分:3)
FixedColumns plugin需要更新,浏览器控制台当前报告
TypeError: $.browser is undefined @ http://www.datatables.net/release-datatables/extras/FixedColumns/media/js/FixedColumns.js:99
;
$。浏览器已从jQuery 1.9中删除,因此您可以使用jQuery 1.8.3代替:http://jsbin.com/uziwin/4/edit
或add the browser detection back to jQuery 1.9+添加了一些额外的插件:https://github.com/mattberg/jquery-browser; http://jsbin.com/uziwin/11/edit