as mentioned, I have a page with the following structure
<div1>
<myEle>
</div1>
<div2></div2>
at first, myEle is under div1, and now I need to move it under div2. Not visually, but structurally. But you can"t use cloneNode, it has to be the one that uses "move".
my ideal state is to "cut" myEle from the document into a free state, and then append it under div2, but I don"t know what to do and whether I can do it.
ask the gods to help