查找所选元素的索引

时间:2015-03-05 23:06:28

标签: javascript jquery html css

我跟随Semmy Purewal的书Learning Web App Development学习html / css,javascript,jQuery等。在他的一个例子中,读者必须在网页上制作三个标签并编写代码以使用户点击的选项卡具有一个名为" active"的类。

在我将该类添加到点击的标签之前,我需要找出它的索引 - 这就是我遇到问题的地方。

这是我的HTML代码:

<!doctype html>
<html>
  <head>
    ...
  </head>

  <body>
    <header>
      ...
    </header>

    <main>
      <div class="container">
        <div class="tabs">
          <a href=""><span class="active">Newest</span></a>
          <a href=""><span>Oldest</span></a>
          <a href=""><span>Add</span></a>
        </div>
        <div class="content">
          <ul>
            ...
          </ul> 
        </div>
      </div>
    </main>

    <footer>
      ...
    </footer>

    <script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
    <script src="app.js"></script>
  </body>
</html>

这是我的jQuery代码,用于获取用户选择的选项卡的索引(受Purewal的强烈影响):

var makeActiveTab = function(tabNum) {
    //make all the tabs inactive
    $(".tabs span").removeClass("active");

    //make the first tab active
    $(".tabs a:nth-child(" + tabNum + ") span").addClass("active");

    //empty the main content so we can recreate it
    $("main .content").empty();

    //return false so we don't follow the link
    return false;
};

var main = function() {
    "use strict";
    var index;
    $(".tabs a").click("click", function() {
        index = $(this).index();
    });

    console.log(index);
};

$(document).ready(main);

控制台输出&#34; undefined&#34;而不是获取单击选项卡的索引。我该怎么做才能解决这个问题?

以下是我目前咨询的资料清单:

1 个答案:

答案 0 :(得分:2)

您需要将console.log()移动到click事件中,如下所示:

var main = function() {
    "use strict";
    var index;
    $(".tabs a").click("click", function() {
        index = $(this).index();
        console.log(index);
    });


};

现在,只要文档就绪,console.log()就会运行,因为只要执行main就会运行它。因为还没有发生点击事件,所以索引变量没有值。