Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.anchors

요약

anchors document 내의 모든 anchor들의 목록을 리턴합니다.

문법

nodeList = document.anchors 

예제

if ( document.anchors.length >= 5 ) {
    dump("dump found too many anchors");
    window.location = "http://www.google.com";
}

알아두기

이전 버전과의 호환성을 제공하기 위해, 반환된 anchor들의 목록은 name 속성(attribute)으로 생성된 anchors들만 포함하고 id 속성(attribute)으로 생성된 것들은 포함하지 않습니다.

명세

DOM Level 2 HTML: anchors

문서 태그 및 공헌자

태그: 
 이 페이지의 공헌자: hoony, mrsshr, fscholz, khalid32, teoli, pusanbear
 최종 변경: hoony,