1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html> <body onload="f()"> <p>First</p> <div> <style scoped> p { color: green } </style> <p>Second</p> </div> <script> function f() { var p = document.getElementsByTagName("p")[1]; document.body.appendChild(p); } </script> </body>