0

我在互联网上的 jQuery 中找到了一个选项卡系统,但是制作它(并授权使用它)的人不再联系了,所以这就是我在这里问这个问题的原因。

这是我的 javascript 代码,用于管理不同的选项卡。

window.onload=function() {​



// get tab container
  var container = document.getElementById("tabContainer");
    if (document.location.hash.length) {
        $('.tabs ul li a[href^="' + document.location.hash + '"]').click();
    }
// set current tab
var navitem = container.querySelector(".tabs ul li");
//store which tab we are on
var ident = navitem.id.split("_")[1];
navitem.parentNode.setAttribute("data-current",ident);
//set current tab with class of activetabheader
navitem.setAttribute("class","tabActiveHeader");

//hide two tab contents we don't need
var pages = container.querySelectorAll(".tabpage");
for (var i = 1; i < pages.length; i++) {
  pages[i].style.display="none";
}

//this adds click event to tabs
var tabs = container.querySelectorAll(".tabs ul li");
for (var i = 0; i < tabs.length; i++) {
  tabs[i].onclick=displayPage;
}
}

// on click of one of tabs
function displayPage() {
  var current = this.parentNode.getAttribute("data-current");
  //remove class of activetabheader and hide old contents
  document.getElementById("tabHeader_" + current).removeAttribute("class");
  document.getElementById("tabpage_" + current).style.display="none";

  var ident = this.id.split("_")[1];
  //add class of activetabheader to new active tab and show contents
  this.setAttribute("class","tabActiveHeader");
  document.getElementById("tabpage_" + ident).style.display="block";
  this.parentNode.setAttribute("data-current",ident);
}

这是 HTML:

            <div class="tabs">
            <ul>
                <li id="tabHeader_1">Les listes</li>
                <li id="tabHeader_2">Les membres</li>
            </ul>
        </div>
<div class="tabscontent">
            <div class="tabpage" id="tabpage_1">
                <h2>Les listes</h2>
                <p>Pellentesque habitant morbi tristique senectus...</p>
            </div>
            <div class="tabpage" id="tabpage_2">
                </div>

默认情况下,javascript 加载第一个选项卡(tabHeader_1,tabpage_1)。我想要的是,如果我将例如放在 url example.com/page.php#tabpage_2 中,它会自动加载第二个选项卡。

非常感谢你的帮助。

4

1 回答 1

0

document.location.hash返回带有数字符号 (#hash) 的哈希。
您也不能用作.tabs ul li a选择器,因为.ali

尝试使用:

var hash = document.location.hash.substr(1); // skip 1 character (the number sign)
$('.tabs ul li[id^="' + hash + '"]').click();

另外,这个脚本不是in jQuery. 它在整个脚本中只使用了 1 个 jQuery 函数。我认为这比 jQuery 更纯 JavaScript。

于 2013-07-18T19:53:13.583 回答