<完整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>
<完整XSLT函數參考