欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js组件bootscrapt 在ie浏览器中不显示中文

程序员文章站 2022-05-25 21:16:52
...

如何设置成中文显示

  1. 在table标签中加入属性:data-locale=“en-US”
<table id="table" data-locale="en-US">
 </table>
  1. 在js加载table中的数据时:加入locale: ‘en-US’
$('#table').bootstrapTable({ 
 locale: 'en-US'
  })
  1. 也可以引用: bootstrap-table-en-US.js 、bootstrap-table-zh-CN.js
<script src="bootstrap-table-en-US.js"></script>
<script src="bootstrap-table-zh-CN.js"></script>

no matching records found (未能找到匹配的记录)

根据上面的设置,在google 和一些浏览器上都可以显示中文了,但是在ie浏览器上好像还是显示的英文
这时候,当没有数据时,你可以覆盖上面的这条提示信息,你可以在js中设置formatNoMatches的返回值而达到你想要的结果

$('#table').bootstrapTable({ 
 formatNoMatches: function () {//当返回的数据为0条时
            return "未能找到匹配的记录";
        },
  })