显示数据表警报

发布于 2024-09-08 06:50:20 字数 216 浏览 3 评论 0原文

我有一个问题,单击按钮后显示此警报:

DataTables warning: Unable to re-initialise DataTable. Please use the API to make any configuration changes required.

此警报的含义是什么?我必须做什么?我希望单击按钮后数据网格可以显示数据...

i have a problem, after i'm click button show this alert:

DataTables warning: Unable to re-initialise DataTable. Please use the API to make any configuration changes required.

what the meaning of this alert??what must i do?i want after click button data grid can show data...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜司空 2024-09-15 06:50:20
$("#show").click(function(event){
                        if (typeof oTable=='undefined'){
                                oTable = $("#datalist").dataTable({
                                .
                                .
                                .
                                });
                        }else{
                                oTable.fnDraw();
                                }
                     });
$("#show").click(function(event){
                        if (typeof oTable=='undefined'){
                                oTable = $("#datalist").dataTable({
                                .
                                .
                                .
                                });
                        }else{
                                oTable.fnDraw();
                                }
                     });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文