Javascript window.open not working

后端 未结 2 1993
我寻月下人不归
我寻月下人不归 2020-12-03 07:11

Ok. I\'m trying to login to twitter. The window is not opening in this code. The response that gets alerted is not null and is a link to a login screen. Any ideas?



        
相关标签:
2条回答
  • 2020-12-03 07:33

    The standard popup-blocker logic contained in most browsers these days will block any calls to window.open() that are not the direct result of a user action. Code that is triggered by timers or by any asynchronous callback (like your ajax ready function) will be treated as NOT caused directly by user actions and the new popup window will generally be blocked.

    You can verify this is what is happening by temporarily changing your browser's popup blocking (turning it off) and see that it then starts working.

    Probably what you need to do as a work-around is to create the window upon the user action that started this thread of code and then put the content into the window when you get your ajax response. The browser will probably allow that. I know that's less desirable from a visual perspective, but you can put some temporary content in the window until the ajax response comes in (something like "loading...").

    0 讨论(0)
  • 2020-12-03 07:34

    Just had this exact same issue. Just in case you wanted the code that fixed it. I used this:

    newWindow = window.open("", "_blank");
    
    request = $.ajax({ ... my request which returns a url to load ... })
    
    request.done((function(_this) {
            return function(data, textStatus, jqXHR) {
              return newWindow.location = data.Url;
            };
          })(this));
    
    0 讨论(0)
提交回复
热议问题