• JS小技巧


    1. 无提示地直接关闭浏览器窗口
      • IE6下
            window.opener = null;//如果缺少此行,close 会导致IE弹出关闭提示;
            window.close();
      • IE7下
            window.open('', '_self');//如果缺少此行,close 会导致IE弹出关闭提示;
            window.close();
      • 框架内(IE6、IE7s)
            window.parent.opener = null;
            window.parent.open('', '_self');
            window.parent.close();
      • 通用
            window.top.opener = null;
            window.top.open('', '_self');
            window.top.close();
    2. 
  • 相关阅读:
    传纸条
    金明的预算方案
    矩阵取数
    能量项链
    选择客栈
    过河
    乌龟棋
    逢低吸纳
    三角形牧场
    多米诺骨牌
  • 原文地址:https://www.cnblogs.com/haiq/p/1993109.html
Copyright © 2020-2023  润新知