Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

window.opener doesn't work

  • 1 trả lời
  • 2 gặp vấn đề này
  • 77 lượt xem
  • Trả lời mới nhất được viết bởi cdman52

more options

I have a website that seems to have just broken with the 18 or 18.0.1 release. The specific code that is breaking is a call to window.opener. The error I see in the console says: TypeError: window.opener.Assignments is undefined

I checked this with IE and FF on our test servers as well as our comparison server (runs last releases version of the code) and they all have the same problem so it's not something that changed in our codebase.

Can anyone tell me why there are javascript errors on calls to window.opener with the latest release and how I can work around this?

I have a website that seems to have just broken with the 18 or 18.0.1 release. The specific code that is breaking is a call to window.opener. The error I see in the console says: TypeError: window.opener.Assignments is undefined I checked this with IE and FF on our test servers as well as our comparison server (runs last releases version of the code) and they all have the same problem so it's not something that changed in our codebase. Can anyone tell me why there are javascript errors on calls to window.opener with the latest release and how I can work around this?

Giải pháp được chọn

I think I found the answer to my own question. In case anyone stumbles on this and it's useful.

I think the problem was that the code was calling window.opener.form when it appears in firefox you have to call window.opener.document.form. Since both work in FF and IE and since it seems there are only a few places in the code where we aren't calling window.opener.document I'll just update the code to do that.

Đọc câu trả lời này trong ngữ cảnh 👍 2

Tất cả các câu trả lời (1)

more options

Giải pháp được chọn

I think I found the answer to my own question. In case anyone stumbles on this and it's useful.

I think the problem was that the code was calling window.opener.form when it appears in firefox you have to call window.opener.document.form. Since both work in FF and IE and since it seems there are only a few places in the code where we aren't calling window.opener.document I'll just update the code to do that.