From 3a60ec47e6776a0c4fc7f72247b987ed9c0d5587 Mon Sep 17 00:00:00 2001 From: Chunhui Fu Date: Tue, 8 Oct 2024 19:23:07 +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/index.md | 2 +- files/zh-cn/web/api/htmltablerowelement/insertcell/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/zh-cn/web/api/htmltablerowelement/index.md b/files/zh-cn/web/api/htmltablerowelement/index.md index 224f756e0dbbe3..f4f4f7663b55a3 100644 --- a/files/zh-cn/web/api/htmltablerowelement/index.md +++ b/files/zh-cn/web/api/htmltablerowelement/index.md @@ -34,7 +34,7 @@ _从其父接口 {{domxref("HTMLElement")}} 继承方法。_ ## 已弃用的属性 > [!WARNING] -> 此属性已弃用,不应再使用。它们被记录下来主要是为了帮助理解旧的代码来源。 +> 这些属性已被弃用,不应再使用。记录这些属性主要是为了帮助理解旧代码库。 - {{domxref("HTMLTableRowElement.align")}} {{deprecated_inline}} - : 一个反映 [`align`](/zh-CN/docs/Web/HTML/Element/tr#align) 属性的字符串枚举值。其指示元素内容相对于周围上下文的对齐方式,可能的值有:`"left"`、`"right"` 和 `"center"`。 diff --git a/files/zh-cn/web/api/htmltablerowelement/insertcell/index.md b/files/zh-cn/web/api/htmltablerowelement/insertcell/index.md index d9550e977c0345..fca051ba800c3b 100644 --- a/files/zh-cn/web/api/htmltablerowelement/insertcell/index.md +++ b/files/zh-cn/web/api/htmltablerowelement/insertcell/index.md @@ -9,7 +9,7 @@ l10n: {{domxref("HTMLTableRowElement")}} 接口的 **`insertCell()`** 方法将一个新单元格({{HtmlElement("td")}})插入到表行({{HtmlElement("tr")}})中,然后返回新单元格的引用。 -> [!NOTE] >`insertCell()` 将单元格直接插入行中,该单元格不需要像使用 {{domxref("Document.createElement()")}} 创建新的 `` 元素那样单独追加。 +> **备注:** `insertCell()` 将单元格直接插入行中,如果使用 {{domxref("Document.createElement()")}} 创建新的 `` 元素,则不需要使用 {{domxref("Node.appendChild()")}} 单独追加单元格。 > > 你不能使用 `insertCell()` 来创建一个新的 `` 元素。