<전체 XSLT 요소 참조
정의 및 사용
<xsl:param> 요소는 로컬 또는 글로벌 변수를 선언하는 데 사용된다.
Note: 이 템플릿 내에서 선언 된 것 경우 매개 변수는 최상위 요소로 선언 않다면 글로벌 및 지역입니다.
통사론
<xsl:param
name="name"
select="expression">
<!-- Content:template -->
</xsl:param>
속성
속성 | 값 | 기술 |
---|---|---|
name | name | 필요합니다. 매개 변수의 이름을 지정합니다 |
select | expression | 선택 과목. 매개 변수의 기본값을 지정하는 XPath 식을 지정합니다 |
예 1
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="xx">
<html>
<body>
<xsl:call-template name="show_title">
<xsl:with-param name="title" />
</xsl:call-template>
</body>
</html>
</xsl:variable>
<xsl:template name="show_title" match="/">
<xsl:param name="title" />
<xsl:for-each select="catalog/cd">
<p>Title: <xsl:value-of select="$title" /></p>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
<전체 XSLT 요소 참조