VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 636|回复: 2

请问cloneNode,previousSibling 这个是怎么用的。

[复制链接]

1

主题

8

帖子

9.00

积分

新手上路

Rank: 1

积分
9.00
发表于 2020-1-7 22:20:01 | 显示全部楼层 |阅读模式
<!--为什么下面这段代码不会一个一个复制而是全部复制 求解 -->
<HTML>
<HEAD>
  <TITLE> New Document </TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
        function clone(obj){
                var newDiv=obj.cloneNode(true);
                obj.insertBefore(newDiv);
        }

//-->
</SCRIPT>

</HEAD>

<BODY>

<FORM METHOD=POST ACTION="">
          <div style="height:20px" align="center">xxx<span>aaa<span></div>
          <INPUT TYPE="button" value="clone" onclick="clone(this.previousSibling)">
</FORM>
</BODY>
</HTML>
回复

使用道具 举报

0

主题

5

帖子

5.00

积分

新手上路

Rank: 1

积分
5.00
发表于 2020-1-9 11:27:02 | 显示全部楼层
Node.cloneNode( )        duplicate a node and, optionally, all of its descendants
       

Availability

DOM Level 1 Core
Synopsis
Node cloneNode(boolean deep);
Arguments
deep

If this argument is true, cloneNode( ) recursively clones all descendants of this node. Otherwise, it clones only this node.
Returns

A copy of this node.
Description

The cloneNode( ) method makes and returns a copy of the node on which it is called. If passed the argument true, it recursively clones all descendants of the node as well. Otherwise, it clones only the node and none of its children. The returned node is not part of the document tree, and its parentNode property is null. When an Element node is cloned, all of its attributes are also cloned. Note, however, that EventListener functions registered on a node are not clone
回复

使用道具 举报

1

主题

8

帖子

9.00

积分

新手上路

Rank: 1

积分
9.00
 楼主| 发表于 2020-1-10 21:36:01 | 显示全部楼层
只看懂个大概意思。但是好象没有发现上面那种问题的答案。继续求解。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表