我想要做的是交换两个 HTML DOM 节点。
让我们看看下面的 HTML 列表和下面的交换按钮:
<ul class="center-text">
<li>0</li>
<li>1</li>
<li>2</li>
</ul>
<form class="center-text">
<button id="swapButton">Swap</button>
</form>
这是我的 JS 代码:
// the "ready" method is the only jQuery method used in the code
$(document).ready(function(){
document.getElementById("swapButton").onclick = function() {
var ul = document.getElementsByTagName("ul")[0];
// pseudo-swapping: insert "child2" before "child0"
// (indexes are 1 and 5 because of the TextNodes between list nodes)
ul.insertBefore(ul.childNodes.item(5), ul.childNodes.item(1));
}
});
因此,单击交换按钮时会发生以下情况:
项目确实交换了。但不知何故(比如说1/4)秒后,它们又恢复到原来的位置,即自动换回。我的问题是:为什么?
PS:代码仅用于教育目的,我只是试图了解门后发生的事情,所以请不要发布任何替代 jQuery 方法。