最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Download file on page load not working - Stack Overflow

programmeradmin0浏览0评论

I've been trying to get a file to download when the page loads by doing this:

<div onload="download()"></div>
<a id="dl" style="display: none" 
    href=".swf" 
    download>Download</a>

<script>
function download(){
   document.getElementById('dl').click();
}
</script>

What it's supposed to do is trigger a function when the page loads that "clicks" the hidden download link. However, this method isn't working and I don't know why.

Anybody know why?

I've been trying to get a file to download when the page loads by doing this:

<div onload="download()"></div>
<a id="dl" style="display: none" 
    href="http://www.miniclip./games/base-jumping/en/base_jumping_miniclip.swf" 
    download>Download</a>

<script>
function download(){
   document.getElementById('dl').click();
}
</script>

What it's supposed to do is trigger a function when the page loads that "clicks" the hidden download link. However, this method isn't working and I don't know why.

Anybody know why?

Share Improve this question edited Aug 14, 2015 at 19:52 Sarath Chandra 1,88621 silver badges40 bronze badges asked Aug 14, 2015 at 18:51 user3777369user3777369 671 gold badge2 silver badges10 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7
<script>
(function download() {
    document.getElementById('dl').click();
})()
</script>

This will execute your function right after instantiation.

<script>
window.location.href = 'http://www.miniclip./games/base-jumping/en/base_jumping_miniclip.swf';
</script>
发布评论

评论列表(0)

  1. 暂无评论