Range.cloneContents() - Web API 接口参考 编辑
Range.cloneContents()
返回一个 DocumentFragment
,它是 Range
中所有的 Node
对象的副本。
使用" DOM 事件"添加的“事件侦听器”在克隆过程中不会被复制。 HTML属性事件与“DOM Core cloneNode”方法一样被复制。“HTML id属性”也将被克隆,这可能导致通过克隆导致无效的文档。
Partially selected nodes include the parent tags necessary to make the document fragment valid.
语法
documentFragment = range.cloneContents();
例子
range = document.createRange();
range.selectNode(document.getElementsByTagName("div").item(0));
documentFragment = range.cloneContents();
document.body.appendChild(documentFragment);
规范
Specification | Status | Comment |
---|---|---|
DOM Range.cloneContents() |
Living Standard | No change. |
Document Object Model (DOM) Level 2 Traversal and Range Specification Range.cloneContents() |
Obsolete | Initial specification. |
浏览器兼容性
BCD tables only load in the browser
此页面上的“兼容性表”是根据“结构化数据”生成的。 如果您想提供数据,请查看 https://github.com/mdn/browser-compat-data 并向我们 pull request.。参考
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论