From b305dbce3d47c8c44a6fc34fa04d220faaffed2c Mon Sep 17 00:00:00 2001 From: Chunhui Fu Date: Tue, 8 Oct 2024 19:22:53 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Jason Ren <40999116+jasonren0403@users.noreply.github.com> --- files/zh-cn/web/api/htmltablerowelement/deletecell/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/zh-cn/web/api/htmltablerowelement/deletecell/index.md b/files/zh-cn/web/api/htmltablerowelement/deletecell/index.md index 8d5595fa133718..fe34c49b85a803 100644 --- a/files/zh-cn/web/api/htmltablerowelement/deletecell/index.md +++ b/files/zh-cn/web/api/htmltablerowelement/deletecell/index.md @@ -80,7 +80,7 @@ button { ```js // 获取相关接口元素 const bodySection = document.querySelectorAll("tbody")[0]; -const row = bodySection.rows[0]; // 选择主体部分的第一行 +const row = bodySection.rows[0]; // 选择表格体部分的第一行 const cells = row.cells; // 集合是动态的,因此总是最新的 const cellNumberDisplay = document.querySelectorAll("output")[0]; @@ -92,7 +92,7 @@ function updateCellNumber() { } addButton.addEventListener("click", () => { - // 在第一行的默认添加单元格 + // 在第一行的末尾添加单元格 const newCell = row.insertCell(); newCell.textContent = `单元格 ${cells.length}`;