diff --git a/docs/table/index.md b/docs/table/index.md index 79caaf96..1a3ac49d 100644 --- a/docs/table/index.md +++ b/docs/table/index.md @@ -331,9 +331,9 @@ table.render({ // 获取选中行相关数据 var tableStatus = table.checkStatus('test'); -console.log(checkStatus.data) // 选中行的数据 -console.log(checkStatus.data.length) // 选中行数量,可作为是否有选中行的条件 -console.log(checkStatus.isAll ) // 表格是否全选 +console.log(tableStatus.data) // 选中行的数据 +console.log(tableStatus.data.length) // 选中行数量,可作为是否有选中行的条件 +console.log(tableStatus.isAll ) // 表格是否全选 ```

设置行选中状态 2.8+