API - .after
2020-12-13 14:54
标签:style blog io color ar 使用 sp div on jQuery官网中的3个Example都使用的是 .after( content [, content ] ), 描述中只有一段简单的 .after( function ) 代码。 经过实际测试,发现 function只能返回 html 字符串可行,返回 Element 或者 jQuery有问题(或许我的用法不对): 添加的内容 First Paragraph Second Paragraph jQuery官网上说 .after() 和 .insertAfter() 完成同样的任务。 API - .after 标签:style blog io color ar 使用 sp div on 原文地址:http://www.cnblogs.com/Jiaojiawang/p/4067509.html.after()
Insert content, specified by the parameter, after each element in the set of matched elements.
$( "p" ).after(function() {
return "
/* 测试有问题的结果:只在第2个p元素后添加。
First Paragraph
Second Paragraph
添加的内容
*/