diff --git a/docs/table/index.md b/docs/table/index.md index d7734080..da891833 100644 --- a/docs/table/index.md +++ b/docs/table/index.md @@ -20,11 +20,12 @@ toc: true | API | 描述 | | --- | --- | | var table = layui.table | 获得 `table` 模块。 | -| [table.set(options)](#set) | 设定全局默认属性项 | +| [table.set(options)](#set) | 设定全局默认属性项。 | | [table.render(options)](#render) | table 组件渲染,核心方法。 | | [table.init(filter, options)](#table.init) | 初始化渲染静态表格。 | | [table.reload(id, options, deep)](#table.reload) | 表格完整重载。 | | [table.reloadData(id, options, deep)](#table.reloadData) 2.7+ | 表格数据重载。 | +| [table.renderData(id)](#table.renderData) 2.8.5+ | 重新渲染数据。 | | [table.checkStatus(id)](#table.checkStatus) | 获取选中行相关数据。 | | [table.setRowChecked(id, opts)](#table.setRowChecked) 2.8+ | 设置行选中状态。 | | [table.getData(id)](#table.getData) | 获取当前页所有行表格数据。 | @@ -286,6 +287,31 @@ table.reloadData('test', { }); ``` +