為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

how to close window in firefox using javascript that is not opened by window.open(); but this thing i urgently need to implement into my project .Thanks in ad

  • 7 回覆
  • 26 有這個問題
  • 3 次檢視
  • 最近回覆由 GopiReddyI

more options

Thanks in advance .Actually I already tried in so many ways but still problem is there. The same method window.close(); is working in other browser but not in the firefox. If there is another way let me know. I just want to fulfill my goal is closing the window when I will click the close button.

Thanks in advance .Actually I already tried in so many ways but still problem is there. The same method window.close(); is working in other browser but not in the firefox. If there is another way let me know. I just want to fulfill my goal is closing the window when I will click the close button.

所有回覆 (7)

more options

Generally speaking, this is not allowed. Many people have posted their tricks for it over the years on the mozillaZine web development forum, so you might search there:

http://forums.mozillazine.org/viewforum.php?f=25

由 jscher2000 - Support Volunteer 於 修改

more options

Thanks For your reply but here in the provided link http://forums.mozillazine.org/viewforum.php?f=25 .I am not finding the solution.So it would be better to directly post the answer here itself. Actually I know it is not possible close the window until unless they opened by script,But if you have any other suggestion about this so i can implement and that will meet the requirement as well. My requirement is when I will click the CLOSE button that time it has to close that application tab in firefox.This feature is pretty working in the other browser well except in the firefox only.So i hope if there is another way to fulfill this requirement.Thanks in advance once again. Please have a look at this program Here i written a simple program for closing the window and this is working well in other browser as i tested but not in firefox .....

<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>Hello World!</title> <title>Closing the Window...</title>

Close the Window...

<input type="button" value="Close" onclick="window.open('','_parent',''); window.close();">

more options

When you run window.open() into _parent, you are navigating the current window to a different page, thus unloading the page containing your running script. I think Firefox may be terminating the script when you unload the page in which it is running.

more options

Good Mrng, Still this problem is there so please give any suggestion that will meet the requirement.And if you have any code that will close the window in firefox so i can implement in my project. Now it is really become critical for me so ,thanks in advance

more options

To avoid confusing other readers of this thread, can you un-mark my earlier reply as solving your problem?

more options

Ok could we close IFrame pop-up cross domain in firefox.

more options

Hi,

I am also facing the same problem in our project, can someone please let me know if you are able to resolve this issue, if so what is the fix/resolution for it ?

Thanks in advance for your help.

Thanks, Gopi.