.click()在IE11中拒绝访问

sko*_*ley 14 html javascript internet-explorer

尝试向网址调用.click()某个anchor标记时auto click.代码在除Internet Explorer v11之外的所有浏览器中都能正常运行.

任何帮助将不胜感激.

var strContent = "a,b,c\n1,2,3\n";
var HTML_APS = strContent;
var data = new Blob([HTML_APS]);
var temp_link = document.createElement('a');
temp_link.href = URL.createObjectURL(data);
temp_link.download = "report_html.htm";
temp_link.type = "text/html";
temp_link.style = "display:none";
document.body.appendChild(temp_link);
if (confirm("Press a button!") == true) {
  temp_link.click();
  temp_link.remove();
}
Run Code Online (Sandbox Code Playgroud)

这是小提琴.

Jar*_*a X 36

对于IE,您可以使用 navigator.msSaveOrOpenBlob

所以,跨浏览器,代码将是

var strContent = "a,b,c\n1,2,3\n";
var HTML_APS = strContent;
var data = new Blob([HTML_APS]);

if (confirm("Press a button!") == true) {
  if (navigator.msSaveOrOpenBlob) {
    navigator.msSaveOrOpenBlob(data, "report_html.htm");
  } else {
    var temp_link = document.createElement('a');
    temp_link.href = URL.createObjectURL(data);
    temp_link.download = "report_html.htm";
    temp_link.type = "text/html";
    document.body.appendChild(temp_link);
    temp_link.click();
    temp_link.remove();
  }
}
Run Code Online (Sandbox Code Playgroud)