Home  >  Article  >  Web Front-end  >  JavaScript method to obtain all sibling nodes_javascript skills

JavaScript method to obtain all sibling nodes_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:49:141566browse

The example in this article describes the method of obtaining all sibling nodes in JavaScript. Share it with everyone for your reference. The details are as follows:

This code first gets the parent node of the element, then gets all the child nodes of its parent node, and then deletes itself and all the sibling nodes

function sibling(elem){
  var r=[];
  var childs=elem.parentNode.childNodes;
  for(var i=0,len=childs.length;i<len;i++){
    if(childs[i].nodeType==1&&childs[i]!=elem){
      r.push(childs[i]);
    }
  }
  return r;
}

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn