Skip to content

Commit

Permalink
docs: fix typo (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
fltb authored Oct 24, 2024
1 parent a42a4a2 commit 2d6c1f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Markdown 示例:

### 转义

NM中,转义让那些有特殊渲染意义的字符被当作正常字符使用,而不是被渲染。在要转义的字符前打一个 `\` 就可以防止特殊渲染,这个专门取消转义用的 `\` 在网页中不显示
Markdown 中,转义让那些有特殊渲染意义的字符被当作正常字符使用,而不是被渲染。在要转义的字符前打一个 `\` 就可以防止特殊渲染,这个专门取消转义用的 `\` 在网页中不显示

``` md
在文章中我们可能会需要键入 \\, \* 等在 Markdown 中拥有语义的字符,这里我们通过在字符前加入 `\` 可以进行转义。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ JSON 非常有用!**一定要了解**!请参考这里 [MDN: 使用 JSON](htt
比如我们使用这个代码可以选中页面中第一个 `a` 元素,并且创建一个引用:

``` js
let link = Document.querySelector('a');
let link = document.querySelector('a');
```

现在你可以通过 link 对象操作 HTML 当中被选中的元素,比如修改它的文本:
Expand Down Expand Up @@ -109,7 +109,7 @@ link.href = 'https://developer.mozilla.org';
```

</li>
<li>现在用 <code>Document.createElement()</code> 创建一个新的段落,用与之前相同的方法赋予相同的文本:
<li>现在用 <code>document.createElement()</code> 创建一个新的段落,用与之前相同的方法赋予相同的文本:

``` js
let para = document.createElement('p');
Expand All @@ -124,7 +124,7 @@ link.href = 'https://developer.mozilla.org';
```

</li>
<li>最后,在内部链接的段落中添加文本节点,完美的结束句子。首先我们要使用<code>Document.createTextNode()</code>创建一个文本节点:
<li>最后,在内部链接的段落中添加文本节点,完美的结束句子。首先我们要使用<code>document.createTextNode()</code>创建一个文本节点:

``` js
let text = document.createTextNode(' — the premier source for web development knowledge.');
Expand Down

0 comments on commit 2d6c1f2

Please sign in to comment.