mCustomScrollbar获胜't滚动到底部

mCustomScrollbar won't scroll to the very bottom

本文关键字:滚动 底部 获胜 mCustomScrollbar      更新时间:2023-09-26

我正在使用一个名为mCustomScrollbar的jQuery插件,它工作得很好,但我不能让它完全滚动到页面底部。这是我的密码,希望你能帮我。谢谢。

     $(document).on('click','#comentar',function(e){
                        e.stopPropagation();
            e.preventDefault();

 $('.comentario').css({'background-image':'url(image/loading.gif)'});   
var comentario = $('.comentario').val();
var foto = $('.comentario').attr('id');

  var datosComentario='foto='+foto+'&comentario='+comentario;

    $.ajax({
        type: "POST",
        url: "/includes/comentar.php",
        data: datosComentario,
        cache: false,
        beforeSend: function(){

                        },
        success: function(response){

      $('#comentarios_cont p').append(response);
      $('.comentario').val('').focus();
$("#comentarios_cont").mCustomScrollbar("update");
$("#comentarios_cont").mCustomScrollbar("scrollTo", "bottom");
      $('.comentario').css({'background-image':'none'}).val('');

        }
         });

});

它滚动,但没有滚动到底。

几分钟前我遇到了这个问题。我的问题是mCSB_container中的div有上下边距。我把它们取下来了,现在没事了,所以请检查一下。

希望这能有所帮助!