首頁  >  文章  >  web前端  >  jquery移動節點實例

jquery移動節點實例

PHPz
PHPz轉載
2016-05-16 16:20:041478瀏覽

這篇文章主要介紹了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影片教學

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除