在这个动态网站上,网址看起来像这样:departments/CHEM.html
CHEM 是一个参数。
<xsl:param name="dep" select="'CHEM'" />
下面是一段xml
<course acad_year="2012" cat_num="5085" offered="Y">
<term term_pattern_code="1" fall_term="Y" spring_term="N">fall term</term>
<department code="CHEM">
<dept_long_name>Department of Chemistry and Chemical Biology</dept_long_name>
<dept_short_name>Chemistry and Chemical Biology</dept_short_name>
</department>
</course> ....
我试图让 dept_short_name 在我的 H1 标签上使用,但我没有成功。到目前为止我试过了
<h2><xsl:value-of select="course/department/[code={@$dep}]"/></h2>
有什么建议么???谢谢!