在使用frame頁面嵌套開發的時候,遇到重啟了伺服器的時候會出現登錄頁面在frame頁面中出現,
所以需要在登入頁裡面用js判斷下當前的地址信息,然後跳到登入的單獨頁面中。
js程式碼如下:
$("document").ready(function(){ //防止在frame里面出现登录页面 if(top.location!==self.location){ //alert(top.location); //alert(self.location); top.location.href=self.location.href; } });