欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jQuery中after的两种用法实例_jquery

程序员文章站 2022-05-06 14:53:26
...
法一:
在每个p元素后插入内容:
复制代码 代码如下:

$("button").click(function(){
$("p").after("

Hello world!

");
});

法二:
复制代码 代码如下:

$("button").click(function(){
$("p").after(function(n){
return "

The p element above has index " + n + "

";
});
});

after中函数必须返回一个html字符串。