javascript 模板化的跳跃链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 模板化的跳跃链接相关的知识,希望对你有一定的参考价值。

    $(document).on('click', '.jump-link', function(){
        var $el = $( $(this).data('jump-target') ),
            offset = $(this).data('jump-offset');
        if ( $el.length ) {
            $('html,body').animate({
                scrollTop: $el.offset().top + offset
            }, 150);
        }
    })
    
    /*
    Usage:
    <a href="#0" data-jump-target="#other-section" data-jump-offset="-50">
    clicking will scroll the page to 50px above <div id="other-section">
    */

以上是关于javascript 模板化的跳跃链接的主要内容,如果未能解决你的问题,请参考以下文章

数据结构——跳跃表

数据结构——跳跃表

带有 Clang 10 显式模板实例化的 ~queue 的未定义引用

常用数据结构java实现

链接模板类函数

数据结构——跳跃表