0

我一直在从这个站点“http://lopatin.github.com/sliderTabs/”尝试这个 jquery SliderTabs。一切正常,我只是在使用外部链接转到特定选项卡时遇到问题。这是我的以下代码:

<script>
$(function(){
 $('#customers').sliderTabs();  

if(document.location.hash!='') {
        //get the index from URL hash
        selectedTab = document.location.hash.substr(1,document.location.hash.length);
        $("#customers").sliderTabs('select', selectTab - 1);
    }

  });
</script>

但这似乎对我不起作用。谁能帮我解决这个问题?

4

1 回答 1

0

我没有看到任何与您可以使用的公共功能相关的插件文档。查看第 230 行的源代码,您似乎想要使用“selectTab”选项而不是像 jquery-ui 选项卡中的“select”选项。https://github.com/lopatin/sliderTabs/blob/master/jquery.sliderTabs.js

$("#customers").sliderTabs("selectTab", selectTab - 1);
于 2012-07-26T22:26:43.197 回答