我是靠谱客的博主 落寞烤鸡,这篇文章主要介绍XSL将XML中的CDATA注释输出为HTML文本的代码实例,现在分享给大家,希望可以做个参考。

要利用DOM 来存取XML 文件,你必须将XML 文件连结到HTML 网页上。

示例代码

1. test.xml

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="gb2312"?> <?xml-stylesheet href="test.xsl" type="text/xsl"?> <entry> <title>entry with images</title> <date>August 09, 2003</date> <author>Kevin</author> <idnum>000033</idnum> <permalink>http://alazanto.org/xml/archives/000033.xml</permalink> <body xmlns:html="http://www.w3.org/1999/xhtml"><![CDATA[]]></more> <comment-link>http://alazanto.org/xml/archives/000033_comments.xml</comment-link> <comment-count>6</comment-count> </entry>
登录后复制
登录后复制

2. test.xsl

复制代码
1
2
3
<?xml version="1.0"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/entry"><html><head></head><body><xsl:value-of select="title" /><xsl:value-of select="body" disable-output-escaping="yes"/> </body></html></xsl:template></xsl:stylesheet>
登录后复制
登录后复制


关键之外在于使用的命名空间xmlns:xsl="www.w3.org/1999/XSL/Transform" 和输出时加上disable-output-escaping="yes"

示例代码

1. test.xml

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="gb2312"?> <?xml-stylesheet href="test.xsl" type="text/xsl"?> <entry> <title>entry with images</title> <date>August 09, 2003</date> <author>Kevin</author> <idnum>000033</idnum> <permalink>http://alazanto.org/xml/archives/000033.xml</permalink> <body xmlns:html="http://www.w3.org/1999/xhtml"><![CDATA[]]></more> <comment-link>http://alazanto.org/xml/archives/000033_comments.xml</comment-link> <comment-count>6</comment-count> </entry>
登录后复制
登录后复制

2. test.xsl

复制代码
1
2
3
<?xml version="1.0"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/entry"><html><head></head><body><xsl:value-of select="title" /><xsl:value-of select="body" disable-output-escaping="yes"/> </body></html></xsl:template></xsl:stylesheet>
登录后复制
登录后复制

关键之外在于使用的命名空间xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 和输出时加上disable-output-escaping="yes"

以上就是XSL将XML中的CDATA注释输出为HTML文本的代码实例的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是落寞烤鸡最近收集整理的关于XSL将XML中的CDATA注释输出为HTML文本的代码实例的全部内容,更多相关XSL将XML中内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(108)

评论列表共有 0 条评论

立即
投稿
返回
顶部