描述(Description)
DataTables在用户界面中使用的字符串都在此对象中定义,允许你单独修改或者完全重新定义替换他们。因为可以使用任何语言的字符串,确保数据表完全可以国际化
DataTables的默认语言选项如下所示。此外,这里还提供了更多翻译在这里
以下是DataTables为其默认使用的语言字符串(有关每个参数的的信息,请参阅其各自的文档)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"decimal": "",
"emptyTable": "No data available in table",
"info": "Showing _START_ to _END_ of _TOTAL_ entries",
"infoEmpty": "Showing 0 to 0 of 0 entries",
"infoFiltered": "(filtered from _MAX_ total entries)",
"infoPostFix": "",
"thousands": ",",
"lengthMenu": "Show _MENU_ entries",
"loadingRecords": "Loading...",
"processing": "Processing...",
"search": "Search:",
"zeroRecords": "No matching records found",
"paginate": {
"first": "First",
"last": "Last",
"next": "Next",
"previous": "Previous"
},
"aria": {
"sortAscending": ": activate to sort column ascending",
"sortDescending": ": activate to sort column descending"
}
}
从 DataTables 1.10.7 开始,新的
i18n()API
方法可以由插件作者从
languageOption
对象来访问语言信息。
因此这里提供的参数列表并不是最详细的。如果你想知道使用能获取到的完整信息,参考插件文档。
类型(Type)
这个选项能够接受以下类型的参数:
相关属性(Related)
下面的选项是直接相关的,也可能是您的应用程序的开发非常有用。
API
Options