文档类型:replaceWith() 方法
DocumentType.replaceWith()
方法将文档类型替换为一组给定的节点。
语法
js
replaceWith(node1)
replaceWith(node1, node2)
replaceWith(node1, node2, /* …, */ nodeN)
参数
node1
, …,nodeN
-
一组用于替换
DocumentType
的节点。
返回值
无 (undefined
).
异常
HierarchyRequestError
DOMException
-
当节点无法插入到层次结构中的指定位置时抛出。
示例
使用 replaceWith()
js
let svg_dt = document.implementation.createDocumentType(
"svg:svg",
"-//W3C//DTD SVG 1.1//EN",
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd",
);
document.doctype.replaceWith(svg_dt);
规范
规范 |
---|
DOM 标准 # ref-for-dom-childnode-replacewith① |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。