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

这篇文章主要介绍了html页面点击按钮实现页面跳转功能,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

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

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

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

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

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

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

html页面自动跳转方法

1.使用meta元素

<meta http-equiv="refresh" content="5;url=hello.html">

http-equiv=“refresh” 是刷新页面,5秒后执行刷新操作,url是跳转的目的页面地址。

<meta http-equiv="refresh" content="5">

这行代码的意思是只刷新,不跳转。

2.使用script代码

立即跳转到hello.html页面。

<script type="text/javascript">
    window.location.href = 'hello.html';
</script>

或者

<script language="javascript">
    location.replace("http://www.cpppp.com/");
</script>

5秒后跳转到hello.html页面。

<script type="text/javascript">
    setTimeout("window.location.href = 'hello.html'", 5000);
</script>

3.判断是否手机端

<script type="text/javascript">
var wapurl = window.location.pathname; 
if
    (/Android|webOS|iPhone|iPod|BlackBerry|Windows CE|Windows Phone/i.test(navigator.userAgent))
{if
    (window.location.href.toLowerCase().indexOf("?pc")<0)
{try
    {window.location.href="/wap"+wapurl}
    catch(e){}}
    }
</script>

到此这篇关于html页面点击按钮实现页面跳转的文章就介绍到这了,更多相关html点击按钮跳转页面内容请搜索网站建设中文网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持网站建设中!

声明:本站所有信息内容均由用户自行发表,该内容观点仅代表用户本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。Email:tellusa@foxmail.com

给TA打赏
共{{data.count}}人
人已打赏
html教程

html实现蜂窝菜单的示例代码

2024-4-7 22:02:17

html教程

HTML中link标签属性的具体用法

2024-4-7 22:23:17

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
有新私信 私信列表
搜索