Bootstrap表导出和刷新

时间:2014-11-28 04:30:57

标签: javascript jquery html twitter-bootstrap

我正在尝试实现表刷新和导出,如第一个示例所示:http://wenzhixin.net.cn/p/bootstrap-table/docs/extensions.html但似乎我的代码无效。我使用的插件是tableExport和bootstrap-table-export.js。这是我的代码: http://jsfiddle.net/ug0hycdg/

表格分页仅在我包含此脚本时才有效:

 $(document).ready(function () {
        $('#pageTables').dataTable();
    });

但即使没有这个脚本,表格也应该是分页。

知道为什么它不起作用?

我添加了按钮:

    <button onClick ="$('#pageTables').tableExport({type:'excel',escape:'false'});"> Save </button>

1 个答案:

答案 0 :(得分:1)

你需要导入bootstrap-table的the source,jsFiddle示例:jsfiddle.net/e3nk137y/147 /.

希望能帮到你。