标签: javascript internet-explorer pdf base64
我需要打开一个我在base64字符串中收到的pdf。 我正在使用以下行打开它
window.open("data:application/pdf;base64," + string64);
它适用于chrome和Firefox,但Internet-Explorer无法打开它。 这有解决方法吗?从我读到的,IE不完全支持base64。还有另一种方法可以在每个浏览器上运行吗?