jQuery中after的两种用法实例

Nyako ·
更新时间:2024-11-14
· 568 次阅读

法一:
在每个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字符串。



after jQuery

需要 登录 后方可回复, 如果你还没有账号请 注册新账号