使用 XSLT 解析 XML 字符串
我有一个 XML 文档,其中有一个包含 HTML 代码的 TextBlock。
<TextBlock>
<h1>This is a header.</h1>
<p>This is a paragraph.</p>
</TextBlock>
然而,在实际的 XML 中,它的编码如下:
<TextBlock>
<h1>This is a header.</h1>
<p>This is a paragraph.</p>
</TextBlock>
因此,当我使用
时,它会显示页面上的所有编码。有没有办法使用 XSLT 将 TextBlock 元素内的 <
转换为 <
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果:
Firefox 有一个相应的错误: https://bugzilla.mozilla.org/show_bug .cgi?id=98168,其中包含很多评论,读起来很有趣。
我现在正在寻找修复方法。
编辑
通过 Firebug 检查时,结果看起来正确:
and the result:
Firefox has a corresponding bug: https://bugzilla.mozilla.org/show_bug.cgi?id=98168, which contains a lot of comments and is an interesting reading.
I am looking for a fix now.
EDIT
When inspecting via Firebug, the result looks correct: