method one:function getTopWindow( window ) {
if( window.parent != null )
{
return getTopWindow( window.parent )
} else {
}
return window
}
method two:
window.top.location.href=“...”
js top window
最新推荐文章于 2024-01-31 10:54:31 发布