iframe中登录失效后,无法完全跳到登录页面

解决iframe中登录失效后,无法完全调到登录页面的问题

//避免登录失效后,登录页嵌套到ifream中
 window.onload = function() {
 	if (top.location.href != location.href){
 		top.location.href = "${basePath}/login"
 	}
 }

你可能感兴趣的:(前端问题)