js实现页面跳转重定向的几种方式

        js实现页面跳转重定向有如下几种方式:

一.window.location.href

<script language="javascript"type="text/javascript"> 
	window.location.href="http://www.baidu.com"; 
</script>

        location 属性是兼容所有浏览器的,因此在实现页面跳转的时候使用这个比较靠谱。

 

二.self.location

<script language="JavaScript"> 
	self.location='http://www.baidu.com'; 
</script>

 

三.top.location

<script language="javascript"> 
	alert("非法访问!"); 
	top.location='http://www.baidu.com'; 
</script>

 

四.window.navigate

<script language="javascript">
	alert('浏览器名称:' + navigator.appName);
	alert('浏览器版本:' + navigator.appVersion);
	alert('浏览器用户代理字符串:' + navigator.userAgent);
	alert('浏览器所在的系统:' + navigator.platform);
	window.navigate("http://www.baidu.com"); 
</script>

        window.navigate("http://www.baidu.com") 这个方法是只针对IE的,不适用于火狐等其他浏览器,在HTML DOM Window Object中,根本没有列出window.navigate这个方法,因此不推荐这种方式。

 

五.window.history.back

<script language="javascript"> 
	alert("返回"); 
	window.history.back(-1); 
</script>

        也算是页面跳转重定向的一种吧。

你可能感兴趣的:(JavaScript,重定向)