next()

Type : public method

Support : 0.6

Return : Element

  • 대상노드의 다음 노드를 반환.
    대상노드와 같은 레벨, 빈 TextNode나 CommentNode는 무시.

Methods

  • next( selector ) : Elementver 0.6~

    • selector : String
      매치시킬 Selector, "> or Space" 직계, 방계 검색은 지원하지 않는다.
      설정하게되면 Selector와 일치해야 개체 반환.

Example

var nextNode = $B( '#box' ).next();

var node = $B( nextNode ).next( 'img[src$="_on.gif"]' );