diff --git a/docs/table/index.md b/docs/table/index.md index b81db3ff..79caaf96 100644 --- a/docs/table/index.md +++ b/docs/table/index.md @@ -345,7 +345,7 @@ console.log(checkStatus.isAll ) // 表格是否全选 | opts | 描述 | 类型 | 默认值 | | --- | --- | --- | --- | | type | 选中方式。可选值: `checkbox,radio` | string | `checkbox` | -| index | 选中行的下标。即数据的所在数组下标(`0` 开头)。
可设置 `all` 表示全选。 | number
string | - | +| index | 选中行的下标。支持以下几种情况: | number
array
string | - | | checked | 选中状态值。 | boolean | - | 该方法用于设置行的选中样式及相关的特定属性值 `LAY_CHECKED`。 @@ -363,10 +363,15 @@ table.setRowChecked('test', { index: 0, // 选中行的下标。 0 表示第一行 }); +// 批量选中行 +table.setRowChecked('test', { + index: [1,3,5] // 2.9.1+ +}); + // 取消选中行 table.setRowChecked('test', { index: 'all', // 所有行 - checked: false + checked: false // 此处若设置 true,则表示全选 }); ```