window.opener becomes null in Internet Explorer after security zone change
My application runs in Local Intranet zone which launches a popup. This popup opens another page in my applic开发者_如何学运维ation (Local Intranet zone) which redirects to an authentication page (Internet zone) which after successful authentication sends back to my application page ( Local Intranet zone). However, at the final page, window.opener becomes null and I can't call methods on parent page.
This doesn't happen when all pages load from the same zone. Is there a way around this behavior so that I can call methods on parent page after redirect?
This sounds very much like an intentional security measure - I can't think of a way to circumvent it.
You could try using a modal dialog (see here how to address the opener from there) and see whether it behaves any different, but I wouldn't hold my breath - it's likely the same security model applies there as well.
精彩评论