-1

因此,我想将 html 添加到具有特定类的每个元素上,但我称之为:

    $(".foldUpSection").find(".header").html($(".foldUpSection").find(".header").html() + 'Some HTML');

从第一个 .header 插入代码。

我尝试过this,但在考虑之后我意识到它显然是未定义的。有没有办法在类范围的修改中引用更改的当前实例?

就像是:

$(".foldUpSection").find(".header").html($("self").html() + 'Some HTML');
4

1 回答 1

2

使用.append() jquery 函数可以让您的工作更简单

$( ".foldUpSection .header" ).append('<div class="miniArrow" style="font-weight:bold;float: right;display:block;width:21px; height:21px; margin-right:15px"><img style="height:13px" src="images/rightArrow.png" /></div>');

Js 小提琴示例

于 2013-09-27T19:06:55.437 回答