简体   繁体   中英

How to click on a link on page load in html?

I have a page with the following link:

<a id="id" href="{{ stream.video_url }}" style="text-decoration: none;" download="{{ title }}.{{ stream.extension }}" target="_blank" >Download</a>

I want to automatically activate this when the page loads. How can I do this?

<body onload="document.getElementById('id').click()">

Here's a way to do this with event listeners and the DOMContentLoaded event.

window.addEventListener('DOMContentLoaded', () => {
    document.getElementById('id').click()
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM