首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

获得顶层窗口

2012-10-27 
取得顶层窗口?var isTopOtherSystem false//最上层窗口是不是本系统//返回层级窗口function findOpener

取得顶层窗口

?

var isTopOtherSystem = false;//最上层窗口是不是本系统//返回层级窗口function findOpenerWin(win){var openerWin = win.top.dialogArguments;if (!openerWin){openerWin = win.top.opener;}if (openerWin){try{openerWin.top.document.location;}catch(e){isTopOtherSystem = true;  }if (isTopOtherSystem){return openerWin;}return findOpenerWin(openerWin)}else{try{//可能产生跨域异常win.top.document.location;}catch(e){isTopOtherSystem = true;  }}return win;}
?

?

热点排行