The JavaScript implementation gets the prev and next method of an element's neighboring sibling nodes _javascript skills

Source: Internet
Author: User
Tags prev

The example in this article describes the Prev and next method of the JavaScript implementation to obtain the neighboring sibling nodes of an element. Share to everyone for your reference, specific as follows:

/**
* Gets the adjacent element
* @param ele reference element
* @param type, the last (1) or next (0)
* @return Returns the found element Dom object, NONE returns null
* *.
function Getnearele (ele, type) {
  type = = Type = 1? "PreviousSibling": "NextSibling";
  var nearele = Ele[type];
  while (Nearele) {
    if (Nearele.nodetype = = 1) {return
      nearele;
    }
    Nearele = Nearele[type];
    if (!nearele) {break
      ;
    }
  }
  return null;
}
/**
* Gets the last element of the current executing object
/function prev () {return
  Getnearele (this, 1);
}
/**
* Gets the next element of the current executing object/
function next () {return
  Getnearele (this, 0);
}
var ele = document.getElementById ("xxx");
var prevelement = Prev.call (ele);
var nextelement = Next.call (ele);

For more information on JavaScript node operations interested readers can view the site topics: "JavaScript Operation DOM Skills Summary"

I hope this article will help you with JavaScript programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.