?? employees.xslt
字號:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:template match="/">
<ul>
<xsl:apply-templates select="*" />
</ul>
</xsl:template>
<xsl:template match="employee">
<li><xsl:value-of select="name" />, <em><xsl:value-of select="@title" /></em></li>
</xsl:template>
</xsl:stylesheet>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -