Bootstrap table 定制提示语

来源:互联网 发布:iphone刷机后数据恢复 编辑:程序博客网 时间:2024/06/06 22:21

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

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

$table.bootstrapTable(    columns:[    ……    ],    formatNoMatches: function(){        return "没有相关的匹配结果";    },    formatLoadingMessage: function(){        return "请稍等,正在加载中。。。";    });

参考:

Bootstrap table官方文档

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

0 0
原创粉丝点击