<html>
<head>
<title>Clone Demo</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
</head>
<body>
<p id="p1">This is a <em>test</em> of cloning</p>
<hr />
<div id="inserthere" style="background-color: yellow;">
</div>
<hr />
<script type="text/javascript">
<!--
function cloneAndCopy(nodeId, deep)
{
var toClone = document.getElementById(nodeId);
var clonedNode = toClone.cloneNode(deep);
var insertPoint = document.getElementById('inserthere');
insertPoint.appendChild(clonedNode);
}
//-->
</script>
<form action="#" method="get">
<input type="button" value="Clone"
οnclick="cloneAndCopy('p1',false);" /><br />
<input type="button" value="Clone Deep"
οnclick="cloneAndCopy('p1',true);" />
</form>
</body>
</html>
dom克隆节点
最新推荐文章于 2024-06-25 20:23:09 发布