Issue with window.close and chrome

后端 未结 6 673
长情又很酷
长情又很酷 2020-11-30 02:41

Im trying to close a child window with javascript and in firefox everything works fine but in chrome the window doesnt close

here is what im using

$(         


        
6条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-30 03:02

    I know this question is old, but I ran into the same problem. This worked for me:

    window.open('', '_self', ''); //bug fix
    window.close();
    

提交回复
热议问题