我是使用jQuery标签的新手,并且我希望能够添加从外部直接链接到特定标签的功能。基本上,一切正常,选项卡上的内容会显示出来,但是实际的选项卡不会激活,但是当您单击它时,它就会显示出来。我为标签设置了背景图片。这就是我的CSS的样子

ul.tabs li a.tab-1 {background-position:0 0;}
ul.tabs li a.tab-1:hover {background-position:0 -61px;}
ul.tabs li.active a.tab-1 {background-position:0 -125px;}


从外部源将您发送到链接时,活动类不会显示。

<ul class="tabs">
  <li class="active"><a class="tab-1" href="#tab-1">history</a></li>
  <li><a class="tab-2" href="#tab-2">About</a></li>
</ul>


这是其余的jQuery代码:

$(document).ready(function() {
  //Default Action
  $(".tab_content").hide(); //Hide all content
  if(location.hash != "") {
    /* If there is a tab id in the page URL */
    $(location.hash).show(); //Show tab content
    $('ul.tabs li:has(a[href="location.hash"])').addClass("active").show(); //Activate tab
    $(this).find("a").addClass("active"); //Add "active” class to href inside selected
  } else {
    $("ul.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content
  }
  //On Click Event
  $("ul.tabs li").click(function() {
    $("ul.tabs li").removeClass("active"); //Remove any "active" class
    $(this).addClass("active"); //Add "active" class to selected tab
    $(".tab_content").hide(); //Hide all tab content
    var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab content
    location.hash = activeTab //Add the anchor to the url (for refresh)
    $(activeTab).fadeIn(); //Fade in the active ID content
    return false;
  });
});


我要达到的目标是,URL是否具有特定位置:../../#tab-1
将li设置为active并显示li元素的激活状态。

最佳答案

您可以模拟点击事件:

$(document).ready(function() {
  //create tab widget before the following code is executed
  $(".tab_content").hide(); //Hide all content
  if(location.hash != "") {
    $(location.hash).show(); //Show tab content
    $('ul.tabs li:has(a[href="'+location.hash+'"])').click(); //LINE CHANGED
  } else {
    $("ul.tabs li:first").click(); //LINE CHANGED
  }
... your code continues here


此外,您的内部也有错误(您忘记了concat location.hach变量)
希望这可以帮助

08-28 14:47