网站怎么做移动图片,软件开发工具也叫,网络营销企业网站推广,深圳小程序app开发如果网页不是通过脚本程序打开的#xff08;window.open()#xff09;#xff0c;调用window.close()脚本关闭窗口前#xff0c;必须先将window.opener对象置为null#xff0c;否则浏览器#xff08;IE7、IE8#xff09;会弹出一个确定关闭的对话框。#xff1c;script… 如果网页不是通过脚本程序打开的window.open()调用window.close()脚本关闭窗口前必须先将window.opener对象置为null否则浏览器IE7、IE8会弹出一个确定关闭的对话框。script languagejavaScript  function closeWindow()   {     window.opener  null;     window.open( , _self,  );      window.close();  }/scriptinput typebutton value关闭窗口 onClickcloseWindow()   或input typebutton value关闭窗口 onClickwindow.opener  null; window.open( , _self,  );window.close() 对于关闭框架窗口script languagejavaScript  function closeWindow()   {         window.opener  null;         window.open(, _top, );         window.parent.close();    }  /script