熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

jQuery中after的兩種用法實例

2022-06-13   來源: JSP教程 

  法一
在每個p元素後插入內容

復制代碼 代碼如下:
$("button")click(function(){
      $("p")after("<p>Hello world!</p>");
});

  
法二

復制代碼 代碼如下:
 $("button")click(function(){
    $("p")after(function(n){
            return "<p>The p element above has index " + n + "</p>";
    });
});

  
after中函數必須返回一個html字符串


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20224.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.