当前位置:主页 > 网页前端 > jquery >

jQuery中after的两种用法实例

时间:2021-05-09 07:42:45 | 栏目:jquery | 点击:

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

您可能感兴趣的文章:

相关文章