成品直播源码,html页面点击按钮实现页面跳转的两种方法

成品直播源码,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>

 

以上就是成品直播源码,html页面点击按钮实现页面跳转的两种方法,更多内容欢迎关注之后的文章

 

posted @ 2022-05-23 14:04  云豹科技-苏凌霄  阅读(721)  评论(0)    收藏  举报