<!--    第一种:   -->
    <script type="text/javascript">
        window.location.href = "login.jsp?backurl=" + window.location.href;
    </script>

    <!--    第二种:   -->
    <script type="text/javascript">
        alert("返回"); window.history.back(-1);
    </script>

    <!--    第三种:-->
    <script type="text/javascript">
        window.navigate("top.jsp");
    </script>

    <!--    第四种:  -->
    <script type="text/javascript">
        self.location = 'top.htm';
    </script>

    <!--    第五种:  -->
    <script type="text/javascript">
        alert("非法访问!"); top.location = 'xx.jsp';
    </script>

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-15
猜你喜欢
  • 2022-02-08
  • 2021-09-21
  • 2022-01-15
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案