簡體   English   中英

單擊導航后,將模式滾動到頂部

[英]Scroll modal to top after clicking navigation

我有以下代碼將wordpress帖子加載到效果很好的模式中。 唯一的問題是,當單擊其中一個導航鏈接時,它將加載下一個帖子,而無需滾動到頂部。

單擊導航鏈接之一時,有什么方法可以使模式滾動到頂部?

(function($) {
$(document).ready(function($){
    $(document).on("click", ".esg-grid a, .postmodal .post-navigation a", function(event) {
             event.preventDefault();
        var post_url = $(this).attr("href");
        var post_id = $(this).attr("rel");
                $(".postmodal").load(post_url + " #main-content" );
                $(".postmodal-container").removeClass("hidden");
                //window.history.pushState("object or string", "Title", "/new-url");
    return false;
    });
});
})(jQuery);

謝謝,

史考特

這應該滾動到模態的頂部。 您可以在加載后立即將其放在Click偵聽器中,以使其滾動。

$(".postmodal-container").scrollTop(0)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM