Js实现页面跳转的几种方式
Posted 张玉宝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js实现页面跳转的几种方式相关的知识,希望对你有一定的参考价值。
第一种:
</script> |
第二种:
<script language="javascript"> alert("返回");window.history.back(-1); </script>
第三种:
<script language= "javascript" > window.navigate( "top.php" ); </script> |
第四种:
<script language= "JavaScript" > self.location= ‘top.htm‘ ; </script> |
第五种:
<script language= "javascript" > alert( "非法访问!" );top.location= ‘xx.php‘ ; </script> |
以上是关于Js实现页面跳转的几种方式的主要内容,如果未能解决你的问题,请参考以下文章