使用xsl插入<?xml-stylesheet标签

前端之家收集整理的这篇文章主要介绍了使用xsl插入<?xml-stylesheet标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用XSLT添加样式表参考?

我试图用第一个变换去掉一些大的输入XML,并且需要在客户端上应用第二个转换.因此,第一个变换必须输出正确的引用,例如:

<?xml-stylesheet type="text/xsl" href="client.xsl"?>

要重写它的XML-> transform1(服务器) – > XML-> transform2(客户端) – > HTML

到目前为止,我唯一可以使其工作的方法是使用xsl:text disable-output-escaping和CDATA:

< xsl:text disable-output-escaping =“yes”><![CDATA [<?xml-stylesheet type =“text / xsl”href =“/ efo / efo_class.xsl”?>]] >

当然必须有更好的方法.

根据XSLT规范,Creating Processing Instructions
<xsl:processing-instruction name="xml-stylesheet">
  <xsl:text>type="text/xsl" href="client.xsl"</xsl:text>
</xsl:processing-instruction>

将创建处理指令:

<?xml-stylesheet type="text/xsl" href="client.xsl"?>

猜你在找的XML相关文章