本文章向大家介绍几个常用的网页跳转页面代码分享,主要内容包括域名页面显示几秒钟之后跳转、不隐藏域名跳转之后的地址、可隐藏域名跳转之后的地址、定时的域名跳转代码、域名要在客户端跳转,可以这样、域名在服务器端跳转、图片跳转代码、基本概念、基础应用、原理机制和需要注意的事项等,并结合实例形式分析了其使用技巧,希望通过本文能帮助到大家理解应用这部分内容。
这里就是整理下自己常用的一个跳转代码,喜欢的话就收藏哈
域名页面显示几秒钟之后跳转
可以在html代码的部分加上这样的域名跳转代码:
<meta http-equiv="refresh" content="3; url=http://http://www.662p.com";>
不隐藏域名跳转之后的地址
<html> <body> <meta http-equiv="refresh" content="0.1;url=http://www.662p.com"> </body> </html>
可隐藏域名跳转之后的地址
<html> <frameset framespacing="0" border="0" rows="0" frameborder="0"> <frame name="main" src="http://www.662p.com" scrolling="auto" noresize> </frameset> </html>
定时的域名跳转代码
<meta http-equiv="refresh" content="3;rul=http://http://www.662p.com";>
此代码可以让网页在一定的时间内,跳转到另外一个网页上,其中content=” 为跳转前停暂的秒数,rul= 为跳转的域名
域名要在客户端跳转,可以这样
<script language="javascript" type="text/javascript"> window.location="http://http://www.662p.com";; </script>
域名在服务器端跳转
Response.Redirect(http://http://www.662p.com)Response.End
图片跳转代码
<a href="http://www.662p.com" target="_blank"><img src="图片跳转" style="width:100%"></a>
发表评论 取消回复