diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/xslt/elements/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/xslt/elements/index.html')
-rw-r--r-- | files/zh-cn/web/xslt/elements/index.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/files/zh-cn/web/xslt/elements/index.html b/files/zh-cn/web/xslt/elements/index.html new file mode 100644 index 0000000000..ecc12b2d6e --- /dev/null +++ b/files/zh-cn/web/xslt/elements/index.html @@ -0,0 +1,53 @@ +--- +title: Elements +slug: Web/XSLT/Elements +tags: + - XSLT_Reference +translation_of: Web/XSLT/Element +--- +<p>{{ XsltRef() }} There are two types of elements discussed here: top-level elements and instructions. A top-level element must appear as the child of either <code><xsl:stylesheet></code> or <code><xsl:transform></code>. An instruction, on the other hand, is associated with a template. A stylesheet may include several templates. A third type of element, not discussed here, is the literal result element (LRE). An LRE also appears in a template. It consists of any non-instruction element that should be copied as-is to the result document, for example, an <code><hr></code> element in an HTML conversion stylesheet.</p> +<p>On a related note, any attribute in an LRE and some attributes of a limited number of XSLT elements can also include what is known as an attribute value template. An attribute value template is simply a string that includes an embedded XPath expression which is used to specify the value of an attribute. At run-time the expression is evaluated and the result of the evaluation is substituted for the XPath expression. For example, assume that a variable "<code>image-dir</code>" is defined as follows:</p> +<pre><xsl:variable name="image-dir">/images</xsl:variable></pre> +<p>The expression to be evaluated is placed inside curly brackets:</p> +<pre><img src="{$image-dir}/mygraphic.jpg"/></pre> +<p>This would result in the following:</p> +<pre><img src="/images/mygraphic.jpg"/></pre> +<p>The element annotations that follow include a description, a syntax listing, a list of required and optional attributes, a description of type and position, its source in the W3C Recommendation and an explanation of the degree of present Gecko support.</p> +<ul> + <li><a href="/cn/XSLT/apply-imports" title="cn/XSLT/apply-imports">xsl:apply-imports</a></li> + <li><a href="/cn/XSLT/apply-templates" title="cn/XSLT/apply-templates">xsl:apply-templates</a></li> + <li><a href="/cn/XSLT/attribute" title="cn/XSLT/attribute">xsl:attribute</a></li> + <li><a href="/cn/XSLT/attribute-set" title="cn/XSLT/attribute-set">xsl:attribute-set</a></li> + <li><a href="/cn/XSLT/call-template" title="cn/XSLT/call-template">xsl:call-template</a></li> + <li><a href="/cn/XSLT/choose" title="cn/XSLT/choose">xsl:choose</a></li> + <li><a href="/cn/XSLT/comment" title="cn/XSLT/comment">xsl:comment</a></li> + <li><a href="/cn/XSLT/copy" title="cn/XSLT/copy">xsl:copy</a></li> + <li><a href="/cn/XSLT/copy-of" title="cn/XSLT/copy-of">xsl:copy-of</a></li> + <li><a href="/cn/XSLT/decimal-format" title="cn/XSLT/decimal-format">xsl:decimal-format</a></li> + <li><a href="/cn/XSLT/element" title="cn/XSLT/element">xsl:element</a></li> + <li><a href="/cn/XSLT/fallback" title="cn/XSLT/fallback">xsl:fallback</a> <em>(not supported)</em></li> + <li><a href="/cn/XSLT/for-each" title="cn/XSLT/for-each">xsl:for-each</a></li> + <li><a href="/cn/XSLT/if" title="cn/XSLT/if">xsl:if</a></li> + <li><a href="/cn/XSLT/import" title="cn/XSLT/import">xsl:import</a> <em>(mostly supported)</em></li> + <li><a href="/cn/XSLT/include" title="cn/XSLT/include">xsl:include</a></li> + <li><a href="/cn/XSLT/key" title="cn/XSLT/key">xsl:key</a></li> + <li><a href="/cn/XSLT/message" title="cn/XSLT/message">xsl:message</a></li> + <li><a href="/cn/XSLT/namespace-alias" title="cn/XSLT/namespace-alias">xsl:namespace-alias</a> <em>(not supported)</em></li> + <li><a href="/cn/XSLT/number" title="cn/XSLT/number">xsl:number</a> <em>(partially supported)</em></li> + <li><a href="/cn/XSLT/otherwise" title="cn/XSLT/otherwise">xsl:otherwise</a></li> + <li><a href="/cn/XSLT/output" title="cn/XSLT/output">xsl:output</a> <em>(partially supported)</em></li> + <li><a href="/cn/XSLT/param" title="cn/XSLT/param">xsl:param</a></li> + <li><a href="/cn/XSLT/preserve-space" title="cn/XSLT/preserve-space">xsl:preserve-space</a></li> + <li><a href="/cn/XSLT/processing-instruction" title="cn/XSLT/processing-instruction">xsl:processing-instruction</a></li> + <li><a href="/cn/XSLT/sort" title="cn/XSLT/sort">xsl:sort</a></li> + <li><a href="/cn/XSLT/strip-space" title="cn/XSLT/strip-space">xsl:strip-space</a></li> + <li><a href="/cn/XSLT/stylesheet" title="cn/XSLT/stylesheet">xsl:stylesheet</a> <em>(partially supported)</em></li> + <li><a href="/cn/XSLT/template" title="cn/XSLT/template">xsl:template</a></li> + <li><a href="/cn/XSLT/text" title="cn/XSLT/text">xsl:text</a> <em>(partially supported)</em></li> + <li><a href="/cn/XSLT/transform" title="cn/XSLT/transform">xsl:transform</a></li> + <li><a href="/cn/XSLT/value-of" title="cn/XSLT/value-of">xsl:value-of</a> <em>(partially supported)</em></li> + <li><a href="/cn/XSLT/variable" title="cn/XSLT/variable">xsl:variable</a></li> + <li><a href="/cn/XSLT/when" title="cn/XSLT/when">xsl:when</a></li> + <li><a href="/cn/XSLT/with-param" title="cn/XSLT/with-param">xsl:with-param</a></li> +</ul> +<p>{{ languages( { "en": "en/XSLT/Elements", "fr": "fr/XSLT/\u00c9l\u00e9ments", "ja": "ja/XSLT/Elements", "pl": "pl/XSLT/Elementy" } ) }}</p> |