首先实现从按下一个按钮跳转到另一个网页
1.不关闭本网页跳到新建一个网页的方式:
<button onclick="location.href='xxx.html' ">跳转到另一个html网页</button>
2.关闭当前网页并跳转到新的网页:
<button onclick="location.replace('xxx.html') ">跳到新的html</button>
1.不关闭本网页跳到新建一个网页的方式:
<button onclick="location.href='xxx.html' ">跳转到另一个html网页</button>
2.关闭当前网页并跳转到新的网页:
<button onclick="location.replace('xxx.html') ">跳到新的html</button>