说说jQuery中after的两种用法
法一:
在每个p元素后插入内容,代码如下:
after中函数必须返回一个html字符串。
在每个p元素后插入内容,代码如下:
$("button").click(function(){
$("p").after("<p>Hello world!</p>");
});
法二:$("p").after("<p>Hello world!</p>");
});
$("button").click(function(){
$("p").after(function(n){
return "<p>The p element above has index " + n + "</p>";
});
});
$("p").after(function(n){
return "<p>The p element above has index " + n + "</p>";
});
});
after中函数必须返回一个html字符串。
网友评论文明上网理性发言已有0人参与
发表评论: