1

我需要从 DIV 中删除所有内容(动态创建),而不是默认存在的按钮。这是 HTML:

<div id="{{ entity.getLabel|lower ~ "_choice_" ~ entity.getId }}" style="display: none">
    <button type="button" class="add-size">Adicionar {{ entity.getLabel|lower }}</button>
</div>

我正在做如下:

$("#" + theName + '_choice_' + theID).empty();
$("#" + theName + '_choice_' + theID).hide();

当然 vars 采用它们的正确值我只是很难.empty()删除所有我需要离开按钮,我该怎么做?

PS:在这两种情况下,HTML 和 jQuery 代码都忘记了 vars 和 Twig 标签,因为它完成了我只需要替换$.empty()一些工作代码的工作

4

1 回答 1

5
$("#" + theName + '_choice_' + theID).find(':not(button)').remove();
于 2013-09-11T17:49:24.210 回答