安装此插件。文件说:
* Disabled by default, to enable add the following section to the footable
* options:
*
* $('#table').footable({
* memory: {
* enabled: true
* }
* });
这个部分在哪里编辑这段代码才能启用?我已经遍布存储库和文档,我仍然没有任何线索。
如果有人可以指出它的位置,这应该是一个简单的...
谢谢!
答案 0 :(得分:0)
您必须使用$('#your-table-id')
选择您的表格,然后使用您问题中显示的代码为其添加足迹插件。
您应该在结束标记之前添加代码,如下所示:
<script type="text/javascript">
$(document).ready(function(){
$('#your-table-id').footable({
memory: {
enabled: true
}
});
});
</script>
我假设您已经将jQuery Framework和插件包含在您的页面中。