使用XSL输出XML文档中的HTML标记
本文关键字:HTML 标记 文档 XSL 输出 XML 使用 | 更新日期: 2023-09-27 18:25:32
关于我的问题大约有一百万个问题,我很幸运地实现了大部分答案。
我正在编写一个C#应用程序,其中包含一个网络浏览器控件。在表单加载时,Web浏览器控件加载以下XML。此XML使用下面的XSL进行样式设置。
XML:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="messages.xsl"?>
<messages>
<message>
<date>25/07/2013</date>
<time>11:41:07</time>
<locations>Everyone</locations>
<title>Test message 1</title>
<body>&lt;P&gt;This is a test message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test!&lt;/P&gt;</body>
<publisher>Test</publisher>
</message>
<message>
<date>29/07/2013</date>
<time>11:20:10</time>
<locations>Everyone</locations>
<title>Another test message</title>
<body>&lt;P&gt;This is another test message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;blah blah&lt;b&gt;blah blah &lt;/b&gt;blah blah.&lt;/P&gt;</body>
<publisher>Test</publisher>
</message>
</messages>
XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="/">
<xsl:text disable-output-escaping='yes'><!DOCTYPE html></xsl:text>
<html>
<head>
<style>
div#message {
margin-bottom: 5px;
border: 0px solid black;
}
div#header {
/*background-color: #98AFC7;*/
margin-bottom: 2px;
}
div.headline {
font-size: 20px;
font-family: Verdana;
cursor: hand;
}
div.headline:hover {
font-size: 20px;
font-family: Verdana;
color: orange;
cursor: hand;
}
div#tagline {
font-size: 9px;
font-family: Verdana;
}
div.main {
font-size: 12px;
font-family: Verdana;
background-color: #C3D9FF;
margin-top: 0px;
padding-bottom: 2px;
margin-bottom: 0px;
}
div#tags {
margin-top: 10px;
}
div#footer {
}
div#hr {
background-color: #4095EF;
height: 2px;
padding: 0px;
margin: 0px;
}
</style>
<script language="javascript" type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script language="javascript" type="text/javascript">
function toggleBody(id) {
$("#main_" + id + "").toggle();
}
$(document).ready(function() {
$(".main").hide();
});
</script>
</head>
<body>
<div id="messages">
<xsl:for-each select="messages/message">
<xsl:variable name="i" select="position()"/>
<div id="message">
<div id="header">
<div id="{$i}" class="headline"><xsl:attribute name="onClick">javascript:toggleBody(this.id)</xsl:attribute>
<xsl:value-of select="title" disable-output-escaping="yes"/>
</div>
<div id="tagline">
Published on <xsl:value-of select="date"/> at <xsl:value-of select="time"/> by <xsl:value-of select="publisher"/>.
</div>
</div>
<div id="main_{$i}" class="main">
<div id="body">
<xsl:value-of select="body" disable-output-escaping="yes"/>
</div>
<div id="tags">
Tags: <xsl:value-of select="locations" />
</div>
</div>
<div id="footer">
<div id="hr">
</div>
</div>
</div>
</xsl:for-each>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
不幸的是,呈现的HTML显示如下:
<P>This is a test message.</P><P> </P><P>Test!</P>
<P>This is another test message.</P><P> </P><P>blah blah<b>blah blah </b>blah blah.</P>
如何正确地呈现HTML标记?
我尝试过使用的副本并禁用输出转义="yes",但没有成功。我尝试过将输出更改为HTML并添加一个模板,但同样没有什么乐趣。
有人能帮忙吗。
提前谢谢。
你能控制输入吗?您需要类似<P>这是一条信息<P>(我会将其标记为:
<body><![CDATA[<P>This is a message.</P>]]></body>)
然后将正文的字符串值设置为:
<P>This is a message.</P>
其具有禁用输出转义将在结果中构造CCD_ 1元素。有了双重转义,你就不能指望&;lt;P&;gt;以创建元素。