我正在为我的中小企业开发一个网站。我正在为一页网站使用带有平滑滚动脚本的引导程序。

问题是,我需要有一个选项卡式窗格,其中包含有关各个服务的信息,但这与平滑滚动脚本冲突,这意味着当我单击某个选项卡时,浏览器会变得混乱。当我禁用smoothscroll脚本时,选项卡可以正常工作。有没有办法可以同时拥有两种功能?

现在正在使用的平滑滚动脚本是这个...取自CSS-tricks.com

<script>
$(function() {

    function filterPath(string) {
        return string
        .replace(/^\//,'')
        .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
        .replace(/\/$/,'');
    }

    var locationPath = filterPath(location.pathname);
    var scrollElem = scrollableElement('html', 'body');

    // Any links with hash tags in them (can't do ^= because of fully qualified URL potential)
    $('a[href*=#]').each(function() {

        // Ensure it's a same-page link
        var thisPath = filterPath(this.pathname) || locationPath;
        if (  locationPath == thisPath
            && (location.hostname == this.hostname || !this.hostname)
            && this.hash.replace(/#/,'') ) {

                // Ensure target exists
                var $target = $(this.hash), target = this.hash;
                if (target) {

                    // Find location of target
                    var targetOffset = $target.offset().top;
                    $(this).click(function(event) {

                        // Prevent jump-down
                        event.preventDefault();

                        // Animate to target
                        $(scrollElem).animate({scrollTop: targetOffset}, 400, function() {

                            // Set hash in URL after animation successful
                            location.hash = target;

                        });
                    });
                }
        }

    });

    // Use the first element that is "scrollable"  (cross-browser fix?)
    function scrollableElement(els) {
        for (var i = 0, argLength = arguments.length; i <argLength; i++) {
            var el = arguments[i],
            $scrollElement = $(el);
            if ($scrollElement.scrollTop()> 0) {
                return el;
            } else {
                $scrollElement.scrollTop(1);
                var isScrollable = $scrollElement.scrollTop()> 0;
                $scrollElement.scrollTop(0);
                if (isScrollable) {
                    return el;
                }
            }
        }
        return [];
    }

});
</script>

最佳答案

这行:

$('a[href*=#]').each(function() {

尝试替换为:
$('a[href*=#]:not([data-toggle="tab"])').each(function() {

关于twitter-bootstrap - 平滑滚动和引导选项卡冲突,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15230608/

10-10 18:34