Javascript打开窗口

来源:互联网 发布:淘宝一件代发怎么上架 编辑:程序博客网 时间:2024/05/17 06:35

strOut="<script language='javascript'>";
    strOut+="/n"+" if (!window.opener || window.opener!='login'&&window.name!='EIS')";
    strOut+="/n"+" {";
    strOut+="/n"+"   window.opener = 'login';";
    strOut+="/n"+"   var feature = 'scrollbars=no,menubar=no,resizable=no,location=no,status=no,toolbar=no';";
    strOut+="/n"+"   var win = window.open('login.jsp','EIS',feature);";
    strOut+="/n"+"   win.resizeTo(screen.width,screen.height);";
    strOut+="/n"+"   win.moveTo(0,0);";
    strOut+="/n"+"   window.close();";  
    strOut+="/n"+" }";
    strOut+="/n"+"</script>";
    strOut+="/n"+"<script language='javascript'>";
    strOut+="/n"+" function FocusTextBox(page)";
    strOut+="/n"+" {";  
    strOut+="/n"+"   document.all(page).focus();";
    strOut+="/n"+" }";
    strOut+="/n"+"</script>";

原创粉丝点击