323604-1.html (432B)
1 <script>function init() { 2 document.getElementById("three").appendChild(document.getElementById("two")) 3 4 setTimeout(function(){ 5 document.getElementById("two").appendChild(document.getElementById("one")) 6 }, 200); 7 }window.addEventListener("load", init, 0);</script> 8 9 <table style="border-collapse: collapse;" border="1"><tr><td id="one">1</td><td id="two">2</td></tr><tr><td id="three">3</td><td>4</td></tr></table>