在使用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; } });