selectsheet.xsl

来自「Windows Web脚本开发指南/(美) Dan Heflin, Todd N」· XSL 代码 · 共 11 行

XSL
11
字号
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/"><ul>
  <xsl:for-each select="timeSheet" order-by="-@startInt">
     <li><xsl:attribute name="id"><xsl:value-of select="@file"/></xsl:attribute>
         <xsl:attribute name="onClick">handleClick()</xsl:attribute>
         <xsl:value-of select="@startDate" /> - Created By: <xsl:value-of select="@createdBy" />
     </li>
  </xsl:for-each>
  </ul> 
</xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?