美文网首页
js下载附件

js下载附件

作者: 回不去的那些时光 | 来源:发表于2019-04-22 18:44 被阅读0次

方式一:

window.location.href = "url"

方式二(推荐):

try{ 
    var elemIF = document.createElement("iframe");   
    elemIF.src = url;   
    elemIF.style.display = "none";   
    document.body.appendChild(elemIF); 
}catch(e){ 
    console.log(e);
} 

相关文章

网友评论

      本文标题:js下载附件

      本文链接:https://www.haomeiwen.com/subject/vxmugqtx.html