标签: javascript svg
我在HTML文档中有一个SVG,并希望这样做,当我点击一个矩形时,它会移动到顶层。我发现的唯一一件事是:
return this.parent.removeElement(this).put(this);
但这不起作用。
答案 0 :(得分:1)
您想要insertBefore或appendChild而不是removeElement并将
insertBefore / appendChild都会删除元素放在其他位置时的位置。