简体   繁体   中英

Is there a way to replace the window after user clicks button?

So id like a way for when the user presses my button it replaces their window with a new URL.

<button id="form-submit" type="submit">Next</button>

Use window.location.href and set it to the new URL.

 document.querySelector('#form-submit').addEventListener('click', () => window.location.href = "https://example.com");
 <button id="form-submit" type="submit">Next</button>

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