从头开始重新实现getElementsByClassName(仅限Vanilla JS)

时间:2015-06-27 17:38:21

标签: javascript dom contains

本着更加熟悉DOM& amp;递归,我决定从头开始重新创建getElementsByClassName(仅限vanilla JS,没有jQuery)。目前,我可以在DOM中找到所有具有我想要的类的元素,但是我遇到了一种方法,只能获得只有两个特定类(或更多)的元素。

<div class="one two">
   <h1 class="one">
      <span class="one two">
  </h1>
</div>

我当前的实现返回了我期望的内容,返回包含类'one'的每个元素:

getElementsByClassName('one');
[<div class="one two"></div>, <h1 class="one"></h1>, <span class="one two"</span>]

我想要的是:

getElementsByClassName('one two');
[<div class="one two"></div>, <span class="one two"</span>]

我遇到的一个问题是使用classList.contains:

element.classList;
// ['one, 'two'];

element.classList.contain("one");
//returns true since the value actually exists


//PROBLEM:
element.classList.contains("one two"); 
//this is looking for "one two" in the array  and not 'one' and 'two'.
//this returns false & my code breaks  

//How would I be able to do something like this, even if it
//means recreating my own helper contains function?
contains('one','two');

我的功能:

var getElementsByClassName = function(className){
   var results = [];
   function getClass(nodeList){
     var childList = nodeList.children;
     _forEach(childList, function(node) {
     //1st level body check
      if(node.classList  && node.classList.contains(className)){
        results.push(node);
      }

      //has children, recurse
      if(node.children) {
        getClass(node);
      }
      else {
        getClass(node);
      }
    });
   }
   getClass(document.body);
   return results;
}



//Helper forEach function to iterate over array like DOM objects
var _forEach = function(collection, func) {
 for(var i = 0; i < collection.length; i++) {
   func(collection[i], i, collection);
 }
}

1 个答案:

答案 0 :(得分:2)

代码中的注释 - 我没有为你实现它,只是指出了你要做的事情:

var getElementsByClassName = function(className){
   // ***Here, split className on whitespace into an array **
   var results = [];
   function getClass(nodeList){
     var childList = nodeList.children;
     _forEach(childList, function(node) {
     //1st level body check
      // **Here, only include the element if Array#every is true,
      // **where you give Array#every a function that does your
      // classList.contains on the name for that iteration
      if(node.classList  && node.classList.contains(className)){
        results.push(node);
      }

      //has children, recurse
      if(node.children) {
        getClass(node);
      }
      else {
        getClass(node);
      }
    });
   }
   getClass(document.body);
   return results;
}