How to swap HTML elements in javascript?
I am using classic Javascript for DOM scripting, i have a set of DIV's in a container DIV. On click event of child DIV's, i want that the child DIV which has caused event to be swaped with the DIV above it.. my code goes here..
<div id="container">
<div onclick="swapDiv(event);">1</div>
开发者_如何学Go<div onclick="swapDiv(event);">2</div>
<div onclick="swapDiv(event);">3</div>
</div>
if DIV 2 has been clicked it should be swap with DIV 1
This code will do what you want (if you want to swap the selected with the first child element). In case you want something else you need to be more precise.
<script type="text/javascript">
function swapDiv(event, elem) {
elem.parentNode.insertBefore(elem, elem.parentNode.firstChild);
}
</script>
<div id="container">
<div onclick="swapDiv(event,this);">1</div>
<div onclick="swapDiv(event,this);">2</div>
<div onclick="swapDiv(event,this);">3</div>
</div>
An element's parentNode
property gives you its parent node. Elements have an insertBefore
function that inserts an element before another reference element (moving it if it's already elsewhere in the tree). And nodes have a previousSibling
that gives you the previous sibling node (which may or may not be an element). So:
function swapDiv(elm) {
var previous = findPrevious(elm);
if (previous) {
elm.parentNode.insertBefore(elm, previous);
}
}
...where findPrevious
looks like this:
function findPrevious(elm) {
do {
elm = elm.previousSibling;
} while (elm && elm.nodeType != 1);
return elm;
}
...where your onclick
attributes should be:
onclick="swapDiv(this);"
...although you may want to look into DOM2 event hooking instead (addEventListener
, or attachEvent
on IE).
Slightly OT, but can I recommend using any of the several libraries available that make your life easier, such as Prototype, jQuery, Closure, or any of several others. In fact, there was an error in an earlier version of this because it had been that long since I'd dealt with the DOM directly. :-)
Swap any nodes, not siblings, not adjecent siblings, no temp nodes, no cloning, no jquery... IE9+
function swapNodes(n1, n2) {
var p1 = n1.parentNode;
var p2 = n2.parentNode;
var i1, i2;
if ( !p1 || !p2 || p1.isEqualNode(n2) || p2.isEqualNode(n1) ) return;
for (var i = 0; i < p1.children.length; i++) {
if (p1.children[i].isEqualNode(n1)) {
i1 = i;
}
}
for (var i = 0; i < p2.children.length; i++) {
if (p2.children[i].isEqualNode(n2)) {
i2 = i;
}
}
if ( p1.isEqualNode(p2) && i1 < i2 ) {
i2++;
}
p1.insertBefore(n2, p1.children[i1]);
p2.insertBefore(n1, p2.children[i2]);
}
This works for siblings, should work for any two nodes:
function swapElements(el1, el2) {
let prev1 = el1.previousSibling;
let prev2 = el2.previousSibling;
prev1.after(el2);
prev2.after(el1);
}
From the sounds of it you basically just want to swap the div with the div before it, ergo with the previousSibling
. You could maybe look at doing an insertBefore
but instead of creating a new element use the existing one. I'm not sure what happens to the attached events tho, if they will be copied over correctly.
In principle you just insertBefore
your clicked element before its previous element sibling. However, the presence of whitespace Text nodes makes that more annoying than it should be in traditional scripting. The Element Traversal API will make this easier, but until it is more widely supported in browsers, helper functions are necessary, eg.:
<div id="container">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
<script type="text/javascript">
// Bind event to each line div
//
var div= firstElementChild(document.getElementById('container'));
while (div!==null) {
div.onclick= swapWithPreviousElement;
div= nextElementSibling(div);
}
// Move element before its previous element sibling
//
function swapWithPreviousElement() {
var previous= previousElementSibling(this);
if (previous!==null)
this.parentNode.insertBefore(this, previous);
}
// We've used some Element Traversal API methods but some
// browsers don't support them yet. Provide wrapper functions
// for compatibility.
//
function previousElementSibling(element) {
if ('previousElementSibling' in element)
return element.previousElementSibling;
do
element= element.previousSibling;
while (element!==null && element.nodeType!==1);
return element;
}
function nextElementSibling(element) {
if ('nextElementSibling' in element)
return element.nextElementSibling;
do
element= element.nextSibling;
while (element!==null && element.nodeType!==1);
return element;
}
function firstElementChild(element) {
if ('firstElementChild' in element)
return element.firstElementChild;
var child= element.firstChild;
while (child!==null && child.nodeType!==1)
child= child.nextSibling;
return child;
}
</script>
You can swap a DOM element with its previous sibling like that:
el.parentNode.insertBefore(el, el.previousElementSibling);
精彩评论