此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

DocumentType:after() 方法

基线 广泛可用

自 2018年4月 起,此特性已在主流浏览器中得到支持,可在大多数设备和浏览器版本中正常使用。

DocumentType.after() 方法在 DocumentType 的父级的子列表中插入一组 Node 对象或字符串,紧跟在 DocumentType 之后。字符串将作为等效的 Text 节点插入。

语法

js
after(param1)
after(param1, param2)
after(param1, param2, /* … ,*/ paramN)

参数

param1, …, paramN

要插入的一组 Node 对象或字符串。

返回值

无 (undefined)。

异常

HierarchyRequestError DOMException

当无法将节点插入到层次结构的指定点时抛出。

示例

js
let docType = document.implementation.createDocumentType("html", "", "");
let myDoc = document.implementation.createDocument("", "", docType);

docType.after(document.createElement("html"));

myDoc.childNodes;
// 节点列表 [<!DOCTYPE html>, <html>]

规范

规范
DOM
# ref-for-dom-childnode-after①

浏览器兼容性

参见