<كاملة XSLT العنصر المرجعي
تعريف والاستخدام
و <xsl:variable> يستخدم عنصر تعريف متغير المحلي أو العالمي.
Note: متغير عالمي إذا هو أعلنت أنها عنصر المستوى الأعلى، وإذا المحلي هو أعلن ذلك ضمن قالب.
Note: بمجرد تعيين قيمة المتغير، لا يمكنك تغيير أو تعديل تلك القيمة!
Tip: يمكنك إضافة قيمة إلى متغير من محتوى <xsl:variable> عنصر أو قبل select سمة!
بناء الجملة
<xsl:variable
name="name"
select="expression">
<!-- Content:template -->
</xsl:variable>
سمات
الصفات | القيمة | وصف |
---|---|---|
name | name | مطلوب. يحدد اسم المتغير |
select | expression | اختياري. يحدد قيمة المتغير |
مثال 1
إذا كان select سمة موجودة، و <xsl:variable> لا يمكن أن يحتوي أي عنصر المحتوى. إذا كان select يحتوي على سمة سلسلة حرفية، يجب أن تكون سلسلة ضمن علامات اقتباس. المثالان تعيين قيمة "red" إلى متغير "color" :
<xsl:variable name="color" select="'red'" />
<xsl:variable name="color" select='"red"' />
مثال 2
إذا كان <xsl:variable> عنصر يحتوي فقط على سمة اسم، وليس هناك أي محتوى، ثم قيمة المتغير سلسلة فارغة:
<xsl:variable name="j" />
مثال 3
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable
name="header">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
</xsl:variable>
<xsl:template
match="/">
<html>
<body>
<table border="1">
<xsl:copy-of select="$header" />
<xsl:for-each
select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<كاملة XSLT العنصر المرجعي