method one:function getTopWindow( window ) {
if( window.parent != null )
{
return getTopWindow( window.parent )
} else {
}
return window
}
method two:
window.top.location.href=“...”
method one:function getTopWindow( window ) {
if( window.parent != null )
{
return getTopWindow( window.parent )
} else {
}
return window
}
method two:
window.top.location.href=“...”