children()

Type : public method

Support : 0.6

Return : Array

  • 대상개체의 자식노드들을 배열로 반환.

Methods

  • children( selector ) : Arrayver 0.6~

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

Example

var els = $B( '#box' ).children();

var goodImgs = $B( '#box' ).children( 'img[alt=good]' );