문서에 기술된 순서로 구성된 모든 연결 a 개체들의 배열변수인 컬렉션을 반환한다.
- 인수
-
- document : (개체)
- 필수적인 요소이고 anchors 컬렉션을 포함하는 모체 개체이다.
- cVal : (컬렉션)
- 선택적인 요소이고 값은 anchors 컬렉션을 나타내는 개체이다.
- oVal : (개체)
- 선택적인 요소이고 값은 anchors 컬렉션의 한개의 엘레멘트 개체이다.
- index : (정수/문자열)
- 필수적인 요소이고 값은 anchors 컬렉션의 인수나 문자열로 한개의 엘레멘트 개체나 다른 컬렉션을 참조할수 있고 배열변수의 규칙에따라 0부터 시작하고 제일 마지막 인수는 길이보다 1 작다. 같은 name이나 id 속성을 가진 개체들이 있는 경우에는 컬렉션을 반환한다.
- subIndex : (문자열)
- 선택적인 요소이고 값은 anchors 컬렉션의 반환받고저 하는 개체의 위치를 지정하며 name이나 id 속성값을 지정하는 문자열이다. 일치하는 개체나 컬렉션을 반환한다.
- 적용
-
개체 | script | HTML | 규격 | IE |
document | [cVal]=document.anchors | 없음 | 없음 | IE3.02(win16,win32,mac),IE4.0(ce,unix) |
- 참조
-
이 컬렉션은 (영문)DOM Level 1(W3C Document Object Model)에 정의되었다.
anchors 설명을 위한 예제
behavior 첨부한 앤커 내부 문자열 1
behavior 첨부한 앤커 내부 문자열 2
|
<A name=testAnchor style="behavior:url(../public/hilite.htc)">behavior 첨부한 앤커 내부 문자열 1</A>
<A name=testAnchor1 style="behavior:url(../public/hilite.htc)">behavior 첨부한 앤커 내부 문자열 2</A>
<SCRIPT>oObj=document.anchors</SCRIPT></TD></TR>
|
length 속성
IE4 NS2
⇒ 컬렉션 배열변수의 요소 갯수를 부호없는 32 bit 정수를 반환하거나 지정한다.
문법: [iVal=]document.anchors.length
코드: document.write(oObj.length);
결과: 5
코드: document.write(document.anchors.length)
결과: 5
item 메서드
IE
⇒ 인덱스로
anchors 등 컬렉션의 한개의 개체를 반환한다.
문법: [oVal=]document.anchors.item('iVal')
코드: document.write(oObj.item(1).name)
결과: testAnchor
코드: document.write(oObj.item('topJump').previousSibling.nodeName)
결과: SCRIPT
namedItem 메서드
IE6
⇒ 이름(
name)이나 인식자(
id)로
anchors 컬렉션에서 한개의 개체나 하부 컬렉션을 반환한다.
문법: [oVal=]document.anchors.item('sVal')
코드: document.write(oObj.namedItem('topJump').previousSibling.nodeName)
결과:
tags 메서드
IE
⇒
anchors 컬렉션에서 HTML 엘레멘트 이름 문자열과 일치하는 엘레멘트들의 컬렉션이나 한개의 엘레맨트 개체를 반환한다.
문법: [oVal=]document.anchors.tags('sVal')
코드: document.write(oObj.tags('A'))
결과:
코드: document.write(oObj.tags('A')[1].name)
결과:
urns 메서드
IE
⇒
behavior가 첨부된 모든 개체의 컬렉션을 반환한다.
문법: [oVal=]document.anchors.urns('sVal')
코드: document.write(oObj.urns('../public/hilite.htc'))
결과:
anchors 컬렉션 예제
col.length=11
col[0].name=sampleJump
col[1].name=testAnchor
col[2].name=testAnchor1
col[3].name=propertyJump
col[4].name=length
col[5].name=methodJump
col[6].name=item
col[7].name=nameJumpdItem
col[8].name=tags
col[9].name=urns
col[10].name=exampleJump
<SCRIPT>
col=document.anchors;
str='col.length='+col.length+'<BR>';
for (i=0;i< col.length;i++){
str+='col['+i+'].name=<FONT color=blue>'+col[i].name+'</FONT><BR>';
}
document.write(str);
</SCRIPT>
최종 수정: 04/04/2025 22:49:54 |  All right reserved | 비정상적인 방식으로 프레임없이 페이지에 접속하면 자주 오류가 발생됩니다. 오류가 나면 정상적 접속으로 시도해 보세요. | http://koxo.com/lang/js/object/anchors.html |