after() 方法在被选元素后插入指定的内容。如需在被选元素前插入内容,请使用before()方法。
jquery视频教程
语法
$(selector).after(content,function(index))
参数 | 描述 |
content | 必需。规定要插入的内容(可包含 HTML 标签)。 |
function(index) | 规定返回待插入内容的函数。index - 返回集合中元素的 index 位置。 |
举个栗子:
$("button").click(function(){ $("p").after("<p>Hello world!</p>"); });