IE 10: SCRIPT5: Access is Denied error on anchor click event(IE 10:SCRIPT5:锚点点击事件上的访问被拒绝错误)
问题描述
我正在尝试使用 javascript 将画布中的 SVG 保存为 PNG 文件.以下代码似乎在 Chrome 和 Firefox 上运行良好,但在 IE 10 中,我在控制台中收到以下错误.
I'm trying to save a SVG from a canvas as PNG file using javascript. The below code seems to work fine on Chrome and Firefox, but in IE 10 i get the below error in my console.
SCRIPT5:访问被拒绝.
SCRIPT5: Access is denied.
在我用过的代码下面找到:
FInd below the code that I've used:
var image = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream");
var a = $('<a>').attr("href", canvas.toDataURL("image/png")).attr("download", title + "png").appendTo($('#VisitsContainer'));
a[0].click();
a.remove();
控制台指向我试图调用的点击事件.
The console points to the click event that I'm trying to invoke.
推荐答案
download 属性未在 Internet Explorer 中实现.
The download attribute is not implemented in Internet Explorer.
http://caniuse.com/download
对于 Internet Explorer,您可以使用另存为"命令.
For Internet explorer you can use the "SaveAs" command.
关于安全性的说明:
浏览器服务于 2 个主机.
Browsers serve 2 masters.
浏览器必须满足用户将内容保存到本地驱动器的请求.
Browsers must serve the user's request to save content to their local drive.
浏览器还必须限制潜在的恶意代码自动将位下载到用户本地驱动器上.
Browsers must also restrict potentially malicious code from automatically downloading bits onto the users local drive.
为了协调这两个任务,浏览器采用的方法是用户可以在经过一些确认过程(如保存按钮)后将内容下载到本地驱动器.
To reconcile the 2 tasks, browsers take the approach that users can download content to their local drive after some confirming process (like a Save button).
使用 a[0].click(); 为用户确认运行与浏览器提供安全性的尝试相反.
Using a[0].click(); to confirm for the user runs contrary to the browser's attempt to provide security.
FileSave.js 是一个跨浏览器库,可将您的画布保存到用户本地驱动器.它通过要求用户单击按钮来确定下载来符合安全问题.
FileSave.js is a cross-browser library that will save your canvas to the users local drive. It conforms to security issues by requiring the user to click a button to OK the download.
https://github.com/eligrey/FileSaver.js/
这篇关于IE 10:SCRIPT5:锚点点击事件上的访问被拒绝错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IE 10:SCRIPT5:锚点点击事件上的访问被拒绝错误
基础教程推荐
- fetch 是否支持原生多文件上传? 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
