Close popup window

前端 未结 6 1437
伪装坚强ぢ
伪装坚强ぢ 2020-12-16 12:49

I have a popup window which is opened using this code:

function _openpageview(fieldid,objectid,opennew)
{
var url=\'/s_viewpagefield.jsp?fieldid=\'+fieldid+\         


        
相关标签:
6条回答
  • 2020-12-16 13:29

    For such a seemingly simple thing this can be a royal pain in the butt! I found a solution that works beautifully (class="video-close" is obviously particular to this button and optional)

     <a href="javascript:window.open('','_self').close();" class="video-close">Close this window</a>
    
    0 讨论(0)
  • 2020-12-16 13:30

    Your web_window variable must have gone out of scope when you tried to close the window. Add this line into your _openpageview function to test:

    setTimeout(function(){web_window.close();},1000);
    
    0 讨论(0)
  • 2020-12-16 13:35

    You can only close a window using javascript that was opened using javascript, i.e. when the window was opened using :

    window.open
    

    then

    window.close
    

    will work. Or else not.

    0 讨论(0)
  • 2020-12-16 13:39

    An old tip...

    var daddy = window.self;
    daddy.opener = window.self;
    daddy.close();
    
    0 讨论(0)
  • 2020-12-16 13:45

    In my case, I just needed to close my pop-up and redirect the user to his profile page when he clicks "ok" after reading some message I tried with a few hacks, including setTimeout + self.close(), but with IE, this was closing the whole tab...

    Solution : I replaced my link with a simple submit button.
    <button type="submit" onclick="window.location.href='profile.html';">buttonText</button>. Nothing more.

    This may sound stupid, but I didn't think to such a simple solution, since my pop-up did not have any form.

    I hope it will help some front-end noobs like me !

    0 讨论(0)
  • 2020-12-16 13:47

    try this

      if(false == web_window.closed)
      {
         web_window.close ();
      }
    
    0 讨论(0)
提交回复
热议问题