本帖最后由 sAS112UUUYY111 于 2011-04-21 17:23:52 编辑

解决方案 »

  1.   

    alert(\"登陆时间超时,请重新登陆!\");
    "window.opener=null;"
    "window.open('','_self');"
    "window.close();"
    为什么只执行第一句,后面的不执行?
      

  2.   

    JOptionPane.showMessageDialog(...........);
      

  3.   

    //普通带提示关闭
    function closeie(){
    window.close();
    }
    // 关闭IE6不提示
    function closeie6(){
    window.opener=null;
    window.close();
    }
    //关闭IE7不提示
    function closeie7(){
    window.open('','_top');
    window.top.close();
    }
      

  4.   

    现在是在main.jsp中有3个frame框架
    当超时,在点某个frame中的菜单或链接时,保证广播系统。
      

  5.   

    那什么子窗体又是怎么一回事啊,是不是要加个parent啊
      

  6.   

    现在是在main.jsp中有3个frame框架
    每个frame中有一个jsp页面
    当超时时,无论点击那个页面,都会弹出超时警告,然后关闭窗口。