英文:
How to use addEventListener to redirect to another html page on button click?
问题
如何使用addEventListner重定向到下一个页面?
在这里,当我点击按钮时,它必须重定向到另一个HTML页面
如何编写代码实现这一点。
HTML
<button>提交</button>
JS
let btn = document.querySelector('button');
btn.addEventListener('click', () => {
// 在这里添加重定向到下一个页面的代码
})
英文:
How to redirect to the next page using addEventListner?
Here, when I click the button it has to redirect to another HTML page
how to write the code for that.
HTML
<button>submit</button>
JS
let btn = document.querySelector('button')
btn.addEventListener('click', () => {
})
答案1
得分: 1
你可以尝试这样做:
let btn = document.querySelector('button')
btn.addEventListener('click', () => {
window.location.replace('http://www.example.com');
})
英文:
You can try this:
let btn = document.querySelector('button')
btn.addEventListener('click', () => {
window.location.replace('http://www.example.com');
})
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论