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

jQuery通過方法append(function(index,html))插入節點

在Jquery中,append函數的額功能是將function函數作為append的參數,該函數的功能是返回一個字符串,作為append方法插入點的內容。

示例:

  1. <script type="text/javascript">  
  2.         $(function() {  
  3.             $("div").append(retHtml); //插入內容  
  4.             function retHtml() {  
  5.                 var str = " <b>Write Less Do More</b> ";  
  6.                 return str;  
  7.             }  
  8.         })  
  9.     </script>  
Copyright © Linux教程網 All Rights Reserved