這篇文章主要介紹了jquery移動節點的實作方法,主要涉及append()方法的使用技巧,需要的朋友可以參考下,具體實作方法如下:
方法很方便簡單,使用append()方法即可。程式碼如下:
<html> <head> <title>jquery移动节点</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <script type="text/javascript" src="jquery-1.8.2.min.js"></script> <script type="text/javascript"> $(function(){ $("button").click(function(){ $("p").append($("p")); }); }); </script> <style type="text/css"> h5{color:blue;} p{width:300px;height:60px;border:solid 1px green;} p p{color:red;} </style> </head> <body> <h5>jquery移动节点</h5> <button>点我</button> <p>哈哈哈哈哈哈,太搞笑了</p> <p>你太幽默了</p> </body> </html>
以上就是本章的全部內容,更多相關教學請造訪jQuery影片教學!