歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

jQuery使用appendTo方法的使用

在jquery中,appendTo()方法,功能是將一個元素標記插入到另外一個標記的過程。

例如:在下面的例子中,通過appendTo方法將img標記插入到span標記中。

  1.  <style type="text/css">  
  2.            body{font-size:13px}  
  3.            img{border:solid 5px #ccc;padding:3px;margin:5px}  
  4.            span{border:solid 15px}  
  5.     </style>  
  6.     <script type="text/javascript">  
  7.         $(function() {  
  8.             $("img").appendTo($("span")); //插入內容  
  9.         })  
  10.     </script>  
  11. </head>  
  12. <body>  
  13.      <img title="2008年新書封面" src="../Images/img03.jpg" />  
  14.      <span><img title="2010年新書封面" src="../Images/img04.jpg" /></span>  
  15. </body>  
Copyright © Linux教程網 All Rights Reserved