欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM importNode() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 12次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM importNode() 方法

Document 对象

实例

返回iframe中第一个 H1 元素:

var frame=document.getElementsByTagName(“iframe”)[0]
var
h=frame.contentWindow.document.getElementsByTagName(“h1”)[0];
var
x=document.importNode(h,true);


定义和用法

importNode() 方法把一个节点从另一个文档复制到该文档以便应用。

imported 节点可以试试任何节点类型。

如果 第二个值设置为 true,那么还要复制该节点的所有子孙节点。


浏览器支持

所有主要浏览器都支持 importNode() 方法

注意: Internet explorer 8 及 IE 更早版本不支持该方法。


语法

document.importNode(node,deep)

参数

参数 类型 描述
deep Boolean 必须。如果为 true,还要递归复制 importedNode 节点的所有子孙节点。

返回值

类型 描述
Node object The imported node

技术细节

DOM 版本 Core Level 2 Document Object


Document 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2310.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900