我有一个 xsl 文件,它将 html 嵌入 xml 并将其转换为 html。这不是我写的,我对 xsl 也一无所知,但我必须完成这项工作,因为它只是我工作项目的一小部分。
我发现了一个错误,它会<script>
使用其正下方的标签呈现任何空标签。这是一个例子......
这:
<script type=”text/javascript” src=”…”></script>
<p>…</p>
渲染成这样...
<script type=”text/javascript” src=”…”><p>…</p></script>
这是现有的 xsl...
<xsl:template match="script">
<script>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</script>
</xsl:template>
这是整个 xsl 文件。注意:我在尝试一些修复时更改了脚本转换。仍然得到同样的错误......
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="p">
<p>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</p>
</xsl:template>
<xsl:template match="script">
<xsl:element name="script">
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:value-of select="." />
</xsl:element>
</xsl:template>
<xsl:template match="option">
<option>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</option>
</xsl:template>
<xsl:template match="select">
<select>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</select>
</xsl:template>
<xsl:template match="object">
<object>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</object>
</xsl:template>
<xsl:template match="param">
<param>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</param>
</xsl:template>
<xsl:template match="label">
<label>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</label>
</xsl:template>
<xsl:template match="input">
<input>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</input>
</xsl:template>
<xsl:template match="textarea">
<textarea>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</textarea>
</xsl:template>
<xsl:template match="nbsp">
 
</xsl:template>
<xsl:template match="noscript">
<xsl:element name="noscript">
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="a">
<a>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:for-each select="href">
<xsl:attribute name="href"><xsl:apply-templates select="." /></xsl:attribute>
</xsl:for-each>
<xsl:for-each select="title">
<xsl:attribute name="title"><xsl:apply-templates select="." /></xsl:attribute>
</xsl:for-each>
<xsl:for-each select="onclick">
<xsl:attribute name="onclick"><xsl:apply-templates select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</a>
</xsl:template>
<xsl:template match="strong">
<strong>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</strong>
</xsl:template>
<xsl:template match="span">
<span>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
<xsl:attribute name="style">
<xsl:text> </xsl:text>
</xsl:attribute>
</xsl:for-each>
<xsl:choose>
<xsl:when test="string-length(.) > 0">
<xsl:apply-templates />
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</span>
</xsl:template>
<xsl:template match="ul">
<ul>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</ul>
</xsl:template>
<xsl:template match="u">
<u><xsl:apply-templates /></u>
</xsl:template>
<xsl:template match="ol">
<ol><xsl:apply-templates /></ol>
</xsl:template>
<xsl:template match="li">
<li>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</li>
</xsl:template>
<xsl:template match="br">
<br>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
</br>
</xsl:template>
<xsl:template match="h1">
<h1>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</h1>
</xsl:template>
<xsl:template match="h2">
<h2>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</h2>
</xsl:template>
<xsl:template match="h3">
<h3><xsl:apply-templates /></h3>
</xsl:template>
<xsl:template match="h4">
<h4><xsl:apply-templates /></h4>
</xsl:template>
<xsl:template match="h5">
<h5><xsl:apply-templates /></h5>
</xsl:template>
<xsl:template match="blockquote">
<blockquote>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</blockquote>
</xsl:template>
<xsl:template match="img">
<img>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
</img>
</xsl:template>
<xsl:template match="i">
<xsl:element name="i">
<xsl:choose>
<xsl:when test="string-length(.) > 0">
<xsl:apply-templates />
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:template>
<xsl:template match="em">
<xsl:element name="em">
<xsl:choose>
<xsl:when test="string-length(.) > 0 or node()">
<xsl:apply-templates />
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:template>
<xsl:template match="div">
<xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">
<xsl:element name="div">
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
<xsl:attribute name="style">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:choose>
<xsl:when test="string-length(.) > 0 or node()">
<xsl:apply-templates />
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:if>
</xsl:template>
<xsl:template match="fieldset">
<xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">
<xsl:element name="div">
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
<xsl:attribute name="style">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:choose>
<xsl:when test="string-length(.) > 0 or node()">
<xsl:apply-templates />
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:if>
</xsl:template>
<xsl:template match="legend">
<xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">
<xsl:element name="div">
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
<xsl:attribute name="style">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:choose>
<xsl:when test="string-length(.) > 0 or node()">
<xsl:apply-templates />
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:if>
</xsl:template>
<xsl:template match="sup">
<sup>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</sup>
</xsl:template>
<xsl:template match="font">
<font>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</font>
</xsl:template>
<xsl:template match="table">
<table>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</table>
</xsl:template>
<xsl:template match="tbody">
<tbody>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</tbody>
</xsl:template>
<xsl:template match="tr">
<tr>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</tr>
</xsl:template>
<xsl:template match="td">
<td>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</td>
</xsl:template>
<xsl:template match="b">
<b>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</b>
</xsl:template>
<xsl:template match="hr">
<hr>
<xsl:for-each select="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates />
</hr>
</xsl:template>
</xsl:stylesheet>