搜尋 Mozilla 技術支援網站

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

Learn More

New blank window is not opening through javascript

  • 1 回覆
  • 1 有這個問題
  • 6 次檢視
  • 最近回覆由 Paul

more options

I am building a web app where I need to open blank tab for redirect its working on desktop but not in android.

/**

    * New Window
    */
   const newWindow: any = window?.open(, '_blank');

   if (!newWindow) return;
   /**
    * Loading Text
    */
   const textNode: any = newWindow.document.createElement('h1');
   textNode.appendChild(document.createTextNode('Loading ...'));
   newWindow.document.body.appendChild(textNode);

When the open parameter is empty it should open blank tab but instead its opening the current location. When put 'about:blank" in open parameter, it open blank page but the createNode function & other codes are not running.

I am building a web app where I need to open blank tab for redirect its working on desktop but not in android. /** * New Window */ const newWindow: any = window?.open('', '_blank'); if (!newWindow) return; /** * Loading Text */ const textNode: any = newWindow.document.createElement('h1'); textNode.appendChild(document.createTextNode('Loading ...')); newWindow.document.body.appendChild(textNode); When the open parameter is empty it should open blank tab but instead its opening the current location. When put 'about:blank" in open parameter, it open blank page but the createNode function & other codes are not running.

所有回覆 (1)

more options

Hi

This sounds more like a web development question than an issue with Firefox for Android.

I recommend that you ask about this at:

https://stackoverflow.com/