Close popup window

前端 未结 6 1463
伪装坚强ぢ
伪装坚强ぢ 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: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);
    

提交回复
热议问题