JS跳转指定链接的多种方法

第一种 

<input name="pclog" type="button" onClick="location.href='http://www.pinkpink.com/'"> 

window.location.href="login.jsp?backurl="+window.location.href; 

第二种: 
<script language="javascript"> 
alert("返回"); 
window.history.back(-1); 
</script> 
第三种: 
<script language="javascript"> 
window.navigate("top.jsp"); 
</script> 
第四种: 
<script language="JavaScript"> 
self.location='top.htm'; 
</script> 
第五种: 
<script language="javascript"> 
alert("非法访问!"); 
top.location='xx.jsp'; 
</script> 


按钮式: 

<INPUT name="pclog" type="button" value="GO" onClick="location.href='http://www.ddhbb.com/'"> 

链接式: 

<a href="javascript:history.go(-1)">返回上一步</a> 
<a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a> 

直接跳转式: 

<script>window.location.href='http://www.ddhbb.com';</script> 

开新窗口: 

<a href="javascript:" onClick="window.open('http://www.ddhbb.com/blog/guestbook.asp','','height=500,width=611,scrollbars=yes,status=yes')">布丁足迹</a> 

猜你喜欢

转载自blog.csdn.net/PINK789/article/details/83376392
今日推荐