使用 XSLT 取消转义 HTML 实体
我的 XSL 模板中有外部脚本结果,包含转义的 html 特殊字符。如何使用 XSLT 取消转义并将其输出到最终文档?
我已经转义了结果, disable-output-escaping="yes"
无法帮助我。
例如(外部脚本的结果):
<!--376473658726587-->
<a href="/">some text</a>
I have external script result in my XSL template, contains escaped html special characters. How I can unescape it with XSLT and output it to final document?
I have already escaped result, disable-output-escaping="yes"
can't help me.
For example (result from external script):
<!--376473658726587-->
<a href="/">some text</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此转换:
应用于此 XML 文档时(您未能提供!!!):
产生所需的正确结果:
This transformation:
when applied on this XML document (you failed to provide one !!!):
produces the wanted, correct result: