锚定href链接到选项卡而不刷新页面

时间:2016-01-14 13:38:48

标签: jquery tabs anchor

我使用以下代码可以在标签之间切换。但我无法使用<a href="#tab5">Go to tab5</a>链接到标签这不起作用。 我希望使用我当前的代码使其工作。

我需要在jQuery文档上添加什么.ready?

我正在寻找2天,但我找不到合适的解决方案。谢谢提前

jQuery(document).ready(function() {
    jQuery('.tabs .tab-links a').on('click', function(e)  {
        var currentAttrValue = jQuery(this).attr('href');

        // Show/Hide Tabs
        jQuery('.tabs ' + currentAttrValue).show().siblings().hide();



        // Change/remove current tab to active
        jQuery(this).parent('li').addClass('active').siblings().removeClass('active');

        e.preventDefault();
    });





});

0 个答案:

没有答案