我已完成以下操作,将我的xml显示在新的浏览器窗口中:
window.open('data:text/xml,' + encodeURIComponent( '<?xml version="1.0" encoding="utf-8"?><Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.001.02"><parent>test</parent></Document>' ));
在所有浏览器中运行良好......但显然IE。我正在使用IE10。我该怎么办才能让它发挥作用?现在,xml是URL编码的,不会出现在新窗口中。
答案 0 :(得分:3)
来自MSDN库中的data Protocol文章:
出于安全原因,数据URI仅限于下载 资源。数据URI 不能用于导航,脚本编写或填充框架或iframe元素。
答案 1 :(得分:1)
出于安全原因,数据URI仅限于下载的资源。数据URI不能用于导航,脚本编写或填充框架或iframe元素......
他们可以使用这个Javascript技巧..
{{1}}