实现从一个按钮跳转到另一个页面

首先实现从按下一个按钮跳转到另一个网页

1.不关闭本网页跳到新建一个网页的方式:

<button  onclick="location.href='xxx.html' ">跳转到另一个html网页</button>

2.关闭当前网页并跳转到新的网页:

<button onclick="location.replace('xxx.html') ">跳到新的html</button>

    原文作者:fecorn
    原文地址: https://blog.csdn.net/weixin_54838742/article/details/124431590
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞