jQuery中after的用法

after() 方法在被选元素后插入指定的内容。

法一:

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

原帖地址:http://www.w3school.com.cn/jquery/manipulation_after.asp

你可能感兴趣的:(javascript)