在单个页面上使用此.js 2次时,它仅适用于一个实例

时间:2012-04-24 21:33:03

标签: javascript

此脚本在文本区域上方创建菜单选项卡。如果在页面上只使用一次,该脚本可以工作,但是我需要在一个页面上使用它两次,以创建2个文本区域,每个区域都有一个菜单。一旦我使用它两次,只有一个实例工作。有什么建议。

window.onload=function() {

  // get tab container
  var container = document.getElementById("tabContainer");
    // 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);
}

2 个答案:

答案 0 :(得分:2)

还没有找到解决方案,但是FYI,你最初把它标记为jQuery,如果它是jquery,你可以很容易地破解该代码的几行并将其编写为:(取决于版本)

function displayPage(e) {
    var current = $(this).parent().attr("data-current");
    $("#tabHeader_" + current).removeClass("tabActiveHeader")
    $("#tabpage_" + current).hide();

    var ident = this.id.split("_")[1];
    $(this).addClass("tabActiveHeader");
    $("#tabpage_" + ident).show();
    $(this).parent().attr({ 'data-current': ident })
}
$(function() {
    var container = $("#tabContainer"),
        navitem = container.find((".tabs ul li")).first(),
        ident = navitem[0].id.split("_")[1];
    navitem.addClass("tabActiveHeader").parent().attr({ 'data-current': ident });

    $(".tabpage").filter(function(i) { return i>0; }).hide();
    // OR
    // $(".tabpage:not(:first-child)").hide();

    $(".tabs ul li").on("click", displayPage)
});​

See WORKING Example of the previous jQUERY in this jsFiddle

另外,你看看jQueryUI.Tabs吗?

答案 1 :(得分:1)

而不是硬设置window.onload - 用最新的处理程序替换最后一个处理程序 - 使用以下代码为同一对象上的同一事件注册任意数量的事件处理程序:

window.addEventListener('load',function(){
  // Your code here
},false);

More can be read about element.addEventListener,特别是IE Support

这对旧版本的IE无效;如果你需要这种支持,我强烈建议使用像jQuery这样的跨浏览器库。您最初将您的问题标记为与jQuery相关,但您的代码中没有使用jQuery。