4

我在我的一个网页中使用引导表。
引导表:链接

我有一个小而有趣的问题: 截屏

如您所见,boostrap 表格文本是中文的。如何更改语言?

4

3 回答 3

8

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

于 2015-03-17T20:59:07.650 回答
0

您还可以将 bootstrap-table 中的语言环境设置为“en-US”,例如

      height: 550,
      locale: 'en-US',

其中 $table 是对 bootstrapTable 的 id 的引用

于 2020-11-25T07:53:07.363 回答
0

在 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>
于 2018-02-22T09:46:04.517 回答