html页面点击按钮实现页面跳转

方法1、在button标签外嵌套一个a标签,利用超链接进行跳转;

<a href="https://www.baidu.com/" target="_blank">
 <button>进入baidu首页button>
a>

方法2、在button标签中添加οnclick="window.location.href=‘页面url’"代码,使用onclick事件进行跳转。

<button onclick="window.location.href = 'https://www.baidu.com/' target="_blank"">进入baidu首页button>

你可能感兴趣的:(HTML5+CSS3,html)