`
tigerwood008
  • 浏览: 3923 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

IE7 关闭窗口不弹出对话框

阅读更多
要实现从一个页面跳转到另一个页面去,把第一个页面自动关闭,
IE6的解决方式:

window.open(url, '_blank', 'top=0,left=0,width=1018px,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,status=no');
window.opener = null;
window.close();  


IE7的解决方式为:

window.open(url, '_blank','top=0,left=0,width=1018px,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,status=no');
    window.open('about:blank','_self').close();
    window.opener = "";

    window.close();   
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics