本文介绍了html2canvas.js不工作在IE9 / 10/11的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我们想要捕获在IFrame内的Div(HTML元素)的屏幕截图。 IFrame在运行时在html页面中加载另一个div。为了捕捉屏幕截图,我们使用了html2canvas.js API。 代码适用于Mozilla和Chrome,但不适用于IE9 / 10/11。 b $ b 基本要求是捕获Div的屏幕截图并将该图像字节数组发送到Flex应用程序。 捕获屏幕截图的函数是: 函数capturImage(){ html2canvas(document.getElementById('map_canvas'),{代理:server.js, useCORS:true, onrenderd:function(canvas){ var imageData = canvas.todataURL('image / png',1.0); imageDataOnly = imageData.split(,); falshObj.getImage(imageDataOnly [1]); } }); IE错误: Please let me know if anyone had similar experience or has any clue in resolving the issue. 解决方案 According to this gitHub issue (that seems to be filled by you), you should not use the proxy and the useCORS properties at the same time. 这篇关于html2canvas.js不工作在IE9 / 10/11的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-22 23:46