window.opener alternatives

前端 未结 5 1839
生来不讨喜
生来不讨喜 2020-11-30 03:39

I am opening a modal popup window. Then I access a parent window textbox and other attributes using window.opener. It is working fine in firefox but not in IE8.

5条回答
  •  旧巷少年郎
    2020-11-30 03:57

    There are two ways to solve the problem: Note: "window.opener" is not supported by IE if "showModalDialog" is been used.

    1) Instead of "window.showModalDialog" use "window.open"

    2) If you want to use "window.showModalDialog" then do the following:

    
    

提交回复
热议问题