我使用Bootstrap表来呈现集合。表是从url:MyAjaxAddress填充的,它是用HTML代码声明的。但当服务器端出现问题时,我想显示信息消息。

<table data-url="MyAjaxAddress" ... >
    <thead>

我的问题是:当MyAjaxAddress from table属性返回HTTP 500时,如何启动javascript函数)

最佳答案

我找到了解决办法

$('#bootstrapTableId').bootstrapTable({

    onLoadError: function (status) {

        MyJsFunction();
    }
});

关于javascript - 处理来自Bootstrap表中URI的错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31832673/

10-12 04:23