我在我的一个网页中使用引导表。
引导表:链接
我有一个小而有趣的问题:
如您所见,boostrap 表格文本是中文的。如何更改语言?
A mistake with cdn.
In bootstrap-table web site in Getting started the CDN link is :
<!-- Latest compiled and minified Locales -->
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.6.0/locale/bootstrap-table-zh-CN.min.js"></script>
It's the chinese CDN.
Others CDN are here : list of CDN
您还可以将 bootstrap-table 中的语言环境设置为“en-US”,例如
height: 550,
locale: 'en-US',
其中 $table 是对 bootstrapTable 的 id 的引用
在 js 文件和 css 文件下面添加这些。
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.min.js"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/locale/bootstrap-table-zh-CN.min.js"></script>