雄辩的javascript标签练习

时间:2015-10-06 16:58:59

标签: javascript tabs event-handling eloquent

Eloquent Javascript ch.14练习#3答案,制作标签。

    <div id="wrapper">
  <div data-tabname="one">Tab one</div>
  <div data-tabname="two">Tab two</div>
  <div data-tabname="three">Tab three</div>
</div>
<script>
  function asTabs(node) {
    var tabs = [];
    for (var i = 0; i < node.childNodes.length; i++) {
      var child = node.childNodes[i];
      if (child.nodeType == document.ELEMENT_NODE)
        tabs.push(child);
    }

    var tabList = document.createElement("div");
    tabs.forEach(function(tab, i) {
      var button = document.createElement("button");
      button.textContent = tab.getAttribute("data-tabname");
      button.addEventListener("click", function() { selectTab(i); });
      tabList.appendChild(button);
    });
    node.insertBefore(tabList, node.firstChild);

    function selectTab(n) {
      tabs.forEach(function(tab, i) {
        if (i == n)
          tab.style.display = "";
        else
          tab.style.display = "none";
      });
      for (var i = 0; i < tabList.childNodes.length; i++) {
        if (i == n)
          tabList.childNodes[i].style.background = "violet";
        else
          tabList.childNodes[i].style.background = "";
      }
    }
    selectTab(0);
  }
  asTabs(document.querySelector("#wrapper"));
</script>

有人会介意解释这条线的重要性:

button.addEventListener("click", function() { selectTab(i); });

问题1:这看起来像一个简单的回调,为什么我只能拨打selectTab(i)?

button.addEventListener("click", selectTab(n));

问题2:为什么函数不返回selecTab函数,即:

button.addEventListener("click", function() { return selectTab(n); });

问题3:为什么我不能像这样将事件对象传递给selectTab?

button.addEventListener("click", selectTab(event));
function selectTab(event){console.log(event.target)}

提前致谢!

1 个答案:

答案 0 :(得分:0)

谢谢dandavis。在你的解释之后我能够想出这个:

button.addEventListener("click", function(event){ selectTab(event);});
function selectTab(event){
        console.log(event.target.textContent);
    }

可能不是很有说服力,但我理解它并且有效!