iframe 、frameset框架有时登录界面加载在框架当中,但我们想直接到登录界面,这时我们可以使用js来实现。
if(window!=top)
{
top.location.href=location.href;
}
使用以上代码,就可以实现转到登录界面。
iframe 、frameset框架有时登录界面加载在框架当中,但我们想直接到登录界面,这时我们可以使用js来实现。
if(window!=top)
{
top.location.href=location.href;
}
使用以上代码,就可以实现转到登录界面。