复制dom
Posted afu-1993
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复制dom相关的知识,希望对你有一定的参考价值。
mdn Node.cloneNode() 复制节点的时候 不会复制 addEventListener和dom.onclick 绑定的事件。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="wrap">
wrap
<input type="text" value="123">
<div class="content">
content
</div>
</div>
<script>
const wrap = document.querySelector(‘.wrap‘)
wrap.addEventListener(‘click‘,function(){
console.log(‘wrap click from add‘)
})
wrap.onclick = function(){
console.log(‘wrap click from on‘)
}
const content = document.querySelector(‘.content‘)
const wrap_clone = wrap.cloneNode(true)
document.body.appendChild(wrap_clone)
</script>
</body>
</html>
以上是关于复制dom的主要内容,如果未能解决你的问题,请参考以下文章
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段