Skip to main content

jquery 追加 html 内容

html

<div><a href="#">bbbb</a></div>

jquery

$('div.dddd a.bbbb').live('click',function(){
$('div.dddd a').after('<p>dddddddddd</p>');
});

用到的函数after

实例在每个 p 元素后插入内容:

$("button").click(function(){ $("p").after("<p>Hello world!</p>");});

定义和用法after() 方法在被选元素后插入指定的内容。 语法$(selector).after(content)

content 必需。规定要插入的内容(可包含 HTML 标签)。 使用函数来插入内容

使用函数在被选元素之后插入指定的内容。

语法

$(selector).after(function(index))

function(index) 必需。规定返回待插入内容的函数。

index – 可选。接收选择器的 index 位置。