是否可以在一个ajax调用后重新加载一个div,而不需要在div中加入一个特定的类?我有一个div,类是 comments
我想在ajax调用后重新加载这些类。media
和 modal
是由一个foreach循环生成的。
<div class="comments">
<div class="media">
some content here
</div>
<div class="modal">
content of modal
</div>
<div class="media">
some content here
</div>
<div class="modal">
content of modal
</div>
<div class="media">
some content here
</div>
<div class="modal">
content of modal
</div>
</div>
我的ajax。
success: function(data) {
$('.result').html(data);
$(".comments").load(" .comments > *"); // reload div comments
},
所以我在寻找这样的东西:
$(".comments").load(" .comments > *"); // reload div comments except the classes .modal in that div
https:/www.quora.comHow-can-we-refresh-a-DIV-without-reloading-the-whole-page或者我只是复制这个
$("#divToReload_WithDAta").load(location.href + " #divToReload_WithDAta");