1. 程式人生 > 其它 >攔截器重定向頁面 設定不在 iframe中顯示

攔截器重定向頁面 設定不在 iframe中顯示

技術標籤:js小知識

如果你要重定向到 login 頁面可以在 login 頁面的head中加入

<script type="text/javascript">
    if (window != top)
      top.location.href = location.href;
  </script>