Bootstrap table 定制提示语

使用Bootstrap table过程中,有时会根据需要,显示定制的提示语,例如没有找到匹配记录的提示语,以及正在加载过程中的提示语等。

下面简单介绍查询结果和加载过程中的提示语的定制。

$table.bootstrapTable(
    columns:[
    ……
    ],
    formatNoMatches: function(){
        return "没有相关的匹配结果";
    },

    formatLoadingMessage: function(){
        return "请稍等,正在加载中。。。";
    }
);

参考:

Bootstrap table官方文档

http://blog.csdn.net/paincupid/article/details/50982858

你可能感兴趣的:(Javascript,html,bootstrap)