Posted in Javascript onJuly 03, 2013
法一:
在每个p元素后插入内容:
$("button").click(function(){ $("p").after("<p>Hello world!</p>"); });
法二:
$("button").click(function(){ $("p").after(function(n){ return "<p>The p element above has index " + n + "</p>"; }); });
after中函数必须返回一个html字符串。
jQuery中after的两种用法实例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@