diff options
Diffstat (limited to 'files/zh-cn/web/api/node/firstchild/index.html')
-rw-r--r-- | files/zh-cn/web/api/node/firstchild/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/files/zh-cn/web/api/node/firstchild/index.html b/files/zh-cn/web/api/node/firstchild/index.html index 9c9808c4b5..c4b7410aea 100644 --- a/files/zh-cn/web/api/node/firstchild/index.html +++ b/files/zh-cn/web/api/node/firstchild/index.html @@ -12,9 +12,9 @@ translation_of: Web/API/Node/firstChild --- <div>{{ ApiRef("DOM") }}</div> -<p><strong>Node.firstChild </strong>只读属性返回树中节点的第一个子节点,如果节点是无子节点,则返回 <code>null。</code></p> +<p><strong>Node.firstChild</strong> 只读属性返回树中节点的第一个子节点,如果节点是无子节点,则返回 <code>null。</code></p> -<h3 id="Syntax" name="Syntax">语法</h3> +<h3 id="语法">语法</h3> <pre class="syntaxbox"><em>var childNode</em> = <em>node</em>.firstChild; </pre> @@ -23,11 +23,11 @@ translation_of: Web/API/Node/firstChild <p>如果有一个子节点, childNode 是节点的第一个子节点的引用,否则为null。</p> -<h3 id="Example" name="Example">例子</h3> +<h3 id="示例">示例</h3> -<h4 id="Example" name="Example">Example 1</h4> +<h4 id="示例_1">示例 1</h4> -<p>这个例子演示了<code>firstChild</code>属性的用法以及空白符节点对该属性的使用可能造成的影响.参见{{ Anch("备注") }}部分了解Gecko DOM中关于处理空白符的更多信息.</p> +<p>这个例子演示了<code>firstChild</code>属性的用法以及空白符节点对该属性的使用可能造成的影响.参见<a href="#备注">备注</a>部分了解Gecko DOM中关于处理空白符的更多信息.</p> <pre><p id="para-01"> <span>First span</span> @@ -53,14 +53,14 @@ translation_of: Web/API/Node/firstChild </script> </pre> -<h4 id="Example" name="Example">Example 2</h4> +<h4 id="示例_2">示例 2</h4> <p><span id="result_box" lang="zh-CN"><span>假设我们有</span><span>一个HTML文档,如果该文档有一个DTD(文档类型定义),则下面的语句会弹出</span></span><code>[object DocumentType],如果该文档没有一个DTD,</code><span id="result_box" lang="zh-CN"><span>则下面的语句会弹出</span></span><code>[object HTMLHtmlElement]</code>.</p> <pre class="eval">alert(document.firstChild); </pre> -<h3 id=".E6.B3.A8.E6.84.8F" name=".E6.B3.A8.E6.84.8F">备注</h3> +<h3 id="备注">备注</h3> <p>Gecko内核的浏览器会在源代码中标签内部有空白符的地方插入一个文本结点到文档中.因此,使用诸如 <a href="/zh-CN/docs/Web/API/Node/firstChild" title="Node.firstChild 只读属性返回树中节点的第一个子节点,如果节点是无子节点,则返回 null。"><code>Node.firstChild</code></a> 和 <a href="/zh-CN/docs/Web/API/Node/previousSibling" title="返回当前节点的前一个兄弟节点,没有则返回null."><code>Node.previousSibling</code></a> 之类的方法可能会引用到一个空白符文本节点, @@ -69,7 +69,7 @@ translation_of: Web/API/Node/firstChild <p>详情请参见 <a class="new" href="/zh-CN/docs/Whitespace_in_the_DOM" rel="nofollow">DOM 中的空白符</a> 和<a class="external" href="http://www.w3.org/DOM/faq.html#emptytext" rel="noopener">W3C DOM 3 FAQ: 为什么一些文本节点是空的</a>.</p> -<h3 id="Specification" name="Specification">规范</h3> +<h3 id="规范">规范</h3> <p><a class="external" href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#attribute-firstChild">DOM Level 1 Core: firstChild</a></p> |