jQuery中after的用法
来源:未知 责任编辑:责任编辑 发表时间:2014-01-20 07:52 点击:次
after() 方法在被选元素后插入指定的内容。
法一:
在每个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字符串。
摘自 徐越的专栏
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>