您可以使用'<xsl:value-of select="." />'
,但您需要 <alldata>
通过像这样添加斜杠来转义 中的所有单引号撇号\'
您可以使用"<xsl:value-of select="." />" or "<xsl:value-of select='.' />"
,但如果有机会<alldata>
包含双引号,那么您也需要转义这些,就像这样\"
如果你想使用第一个,那么这将转义单引号:
<xsl:template name="escapeSingleQuotes">
<xsl:param name="txt"/>
<xsl:variable name="backSlashSingleQuote">\'</xsl:variable>
<xsl:variable name="singleQuote">'</xsl:variable>
<xsl:choose>
<xsl:when test="string-length($txt) = 0">
<!-- empty string - do nothing -->
</xsl:when>
<xsl:when test="contains($txt, $singleQuote)">
<xsl:value-of disable-output-escaping="yes"
select="concat(substring-before($txt, $singleQuote), $backSlashSingleQuote)"/>
<xsl:call-template name="escapeSingleQuotes">
<xsl:with-param name="txt" select="substring-after($txt, $singleQuote)"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="$txt"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
您可以像这样在代码中使用:
var l_allDataValue = '<xsl:call-template name="escapeSingleQuotes">
<xsl:with-param name="txt" select="."/>
</xsl:call-template>'