时间:2021-07-01 10:21:17 帮助过:13人阅读
after() 方法在被选元素后插入指定的内容。如需在被选元素前插入内容,请使用before()方法。
jquery视频教程
语法
$(selector).after(content,function(index))
参数 | 描述 |
content | 必需。规定要插入的内容(可包含 HTML 标签)。 |
function(index) | 规定返回待插入内容的函数。index - 返回集合中元素的 index 位置。 |
举个栗子:
$("button").click(function(){ $("p").after("<p>Hello world!</p>"); });
以上就是jquery的after方法怎么用的详细内容,更多请关注Gxl网其它相关文章!