Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. XML: 확장가능한 마크업 언어
  3. XPath
  4. Reference
  5. Functions
  6. position

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

position

position 함수는 식 평가 문맥(expression evaluation context)와 위치가 같은 숫자를 반환합니다.

구문

position()

반환

식 평가 문맥과 위치가 같은 정수.

주의

  • 문맥 안 노드의 위치는 0 기반이 아님을 주의하세요. 첫 노드는 위치가 1입니다.
  • 문맥은 경로의 나머지로 결정됩니다.
<xsl:template match="//a[position() = 5"> <!-- 이 템플릿은 문서 안 다섯 번째 a 요소와 일치합니다. --></xsl:template>
<xsl:template match="//div[@class='foo']/bar[position() = 1]"> <!-- 이 템플릿은 class 속성이 "foo"이고 div 요소의 자식인 첫 번째 bar 요소와 일치합니다 --></xsl:template>

정의

XPath 1.0 4.1

Gecko 지원

지원함.

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp