我有两个div:
<div id='div1'>
<span>text</span>
</div>
<div id='div2'>
</div>
我正在尝试将跨度从 div1 移动到 div2:
var div1 = document.querySelector('#div1');
var div2 = document.querySelector('#div2');
//cloning span
var span = div1.firstElementChild.cloneNode();
//removing span from the first div
div1.removeChild(div1.firstElementChild);
//trying to append new span to the second div but nothing happens
div2.appendChild(span);
span 元素被删除,但没有插入到第二个 div 中。
我错过了什么吗?