html页面自动跳转方法

1.使用meta元素


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


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

2.使用script代码

立即跳转到hello.html页面。


或者


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


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,前端)