<전체 XSLT 요소 참조
정의 및 사용
<xsl:with-param> 요소의 템플릿에 전달되는 파라미터의 값을 정의한다.
Note: 의 값 name 의 속성 <xsl:with-param> 의 이름과 일치해야합니다 <xsl:param> 요소를 (the <xsl:with-param> element is ignored if there is no match) .
Note: <xsl:with-param> 요소 내에서 허용되는 <xsl:apply-templates> 와 <xsl:call-template> .
Tip: 당신은의 내용에 의해 매개 변수에 값을 추가 할 수 있습니다 <xsl:with-param> 요소 또는에 의해 select 속성!
통사론
<xsl:with-param
name="name"
select="expression">
<!-- Content:template -->
</xsl:with-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:template
match="/">
<html>
<body>
<xsl:for-each
select="catalog/cd">
<xsl:call-template name="show_title">
<xsl:with-param name="title" select = "title" />
</xsl:call-template>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template name = "show_title" >
<xsl:param name = "title"
/>
<p>Title: <xsl:value-of select = "$title" /></p>
</xsl:template>
</xsl:stylesheet>
<전체 XSLT 요소 참조