如何在没有特定类的情况下,在ajax回调后重新加载一个div。

问题描述 投票:0回答:1

是否可以在一个ajax调用后重新加载一个div,而不需要在div中加入一个特定的类?我有一个div,类是 comments 我想在ajax调用后重新加载这些类。mediamodal 是由一个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
jquery ajax callback reload
1个回答
0
投票

https:/www.quora.comHow-can-we-refresh-a-DIV-without-reloading-the-whole-page或者我只是复制这个

 $("#divToReload_WithDAta").load(location.href + " #divToReload_WithDAta");
© www.soinside.com 2019 - 2024. All rights reserved.