Skip to content

Commit

Permalink
docs(dom): fix text (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
cogic authored Apr 22, 2024
1 parent 7070f24 commit 83aea13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dom/document.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ document.replaceChild(
);
```

上面代码中,第一步生成一个新的 HTML 文档`doc`,然后用它的根元素`document.documentElement`替换掉`document.documentElement`。这会使得当前文档的内容全部消失,变成`hello world`
上面代码中,第一步生成一个新的 HTML 文档`doc`,然后用它的根元素`doc.documentElement`替换掉`document.documentElement`。这会使得当前文档的内容全部消失,变成`hello world`

## 方法

Expand Down Expand Up @@ -716,7 +716,7 @@ var element = document.getElementById('ul');
element.appendChild(docfrag);
```

上面代码中,文档片断`docfrag`包含四个`<li>`节点,这些子节点被一次性插入了当前文档。
上面代码中,文档片段`docfrag`包含四个`<li>`节点,这些子节点被一次性插入了当前文档。

### document.createEvent()

Expand Down

0 comments on commit 83aea13

Please sign in to comment.