最新的Web开发教程
 

XSLT system-property() Function


<完整XSLT函数参考

定义和用法

system- property()函数返回由name指定的系统属性的值。

在XSLT命名空间中的系统属性:

  • XSL:版本 - 由处理器实现的XSLT版本
  • XSL:供应商 - XSLT处理器的供应商
  • XSL:供应商URL - 的URL识别XSLT处理器的供应商

句法

object system-property(string)

参数

参数 描述
string 需要。 指定系统属性返回的值

实施例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>
<p>
Version:
<xsl:value-of select="system-property('xsl:version')" />
<br />
Vendor:
<xsl:value-of select="system-property('xsl:vendor')" />
<br />
Vendor URL:
<xsl:value-of select="system-property('xsl:vendor-url')" />
</p>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

查看XSL文件 ,并查看结果


<完整XSLT函数参考