0

我所有的 div 块都使用相同的类名,我需要在文件上传完成后附加一个新的 div 块。我现在的做法是在每个现有块上附加一个新块。这是我的测试代码:

HTML:

<div class="img_container" id="img1">EXISTING BLOCK</div>'
<div class="img_container" id="img2">EXISTING BLOCK</div>'

查询:

$('#fileupload').bind('fileuploadcompleted', function (e, data) {
    e.preventDefault();
    var $newdiv = $('<div class="img_container" id="img3">NEW BLOCK</div>');

    $('.img_container').append($newdiv);
})

我也尝试过附加到 body 标签,但新的 div 从未出现。知道如何解决这个问题吗?

4

1 回答 1

5
$('.img_container:last').after($newdiv) // should do the trick
于 2012-07-03T13:18:24.433 回答