在弹出 的窗口中加上宽和高就行了:
<script>
closes.Click();//close itself
var tmp=window.open("login.htm","tip","height=300, width=200, scrollbars=0,fullscreen=1")
tmp.focus()
</script>

解决方案 »

  1.   

    刚学到的一个COOL!!!
    Trynoborder.thm<HTML XMLNS:IE>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <IE:Download ID="include" STYLE="behavior:url(#default#download)" />
    <title>Chromeless Window</title><SCRIPT LANGUAGE="JScript">
    /*--- Special Thanks For andot ---*//*
     This following code are designed and writen by Windy_sk <[email protected]>
     You can use it freely, but u must held all the copyright items!
    *//*--- Thanks For andot Again ---*/var CW_width = 400;
    var CW_height = 300;
    var CW_top = 100;
    var CW_left = 100;
    var CW_url = "/";
    var New_CW = window.createPopup();
    var CW_Body = New_CW.document.body;
    var content = "";
    var CSStext = "margin:1px;color:black; border:2px outset;border-style:expression(onmouseout=onmouseup=function(){this.style.borderStyle='outset'}, onmousedown=function(){if(event.button!=2)this.style.borderStyle='inset'});background-color:buttonface;width:16px;height:14px;font-size:12px;line-height:11px;cursor:Default;";//Build Window
    include.startDownload(CW_url, function(source){content=source});function insert_content(){
    var temp = "";
    CW_Body.style.overflow = "hidden";
    CW_Body.style.backgroundColor = "white";
    CW_Body.style.border =  "solid black 1px";
    content = content.replace(/<a ([^>]*)>/g,"<a onclick='parent.open(this.href);return false' $1>");
    temp += "<table width=100% height=100% cellpadding=0 cellspacing=0 border=0>";
    temp += "<tr style=';font-size:12px;background:#0099CC;height:20;cursor:default' ondblclick=\"Max.innerText=Max.innerText=='1'?'2':'1';parent.if_max=!parent.if_max;parent.show_CW();\" onmouseup='parent.drag_up(event)' onmousemove='parent.drag_move(event)' onmousedown='parent.drag_down(event)' onselectstart='return false' oncontextmenu='return false'>";
    temp += "<td style='color:#ffffff;padding-left:5px'>Chromeless Window For IE6 SP1</td>";
    temp += "<td style='color:#ffffff;padding-right:5px;' align=right>";
    temp += "<span id=Help  onclick=\"alert('Chromeless Window For IE6 SP1  -  Ver 1.0\\n\\nCode By Windy_sk\\n\\nSpecial Thanks For andot')\" style=\""+CSStext+"font-family:System;padding-right:2px;\">?</span>";
    temp += "<span id=Min   onclick='parent.New_CW.hide();parent.blur()' style=\""+CSStext+"font-family:Webdings;\" title='Minimum'>0</span>";
    temp += "<span id=Max   onclick=\"this.innerText=this.innerText=='1'?'2':'1';parent.if_max=!parent.if_max;parent.show_CW();\" style=\""+CSStext+"font-family:Webdings;\" title='Maximum'>1</span>";
    temp += "<span id=Close onclick='parent.opener=null;parent.close()' style=\""+CSStext+"font-family:System;padding-right:2px;\" title='Close'>x</span>";
    temp += "</td></tr><tr><td colspan=2>";
    temp += "<div id=include style='overflow:scroll;overflow-x:hidden;overflow-y:auto; HEIGHT: 100%; width:"+CW_width+"'>";
    temp += content;
    temp += "</div>";
    temp += "</td></tr></table>";
    CW_Body.innerHTML = temp;
    }setTimeout("insert_content()",1000);var if_max = true;
    function show_CW(){
    window.moveTo(10000, 10000);
    if(if_max){
    New_CW.show(CW_top, CW_left, CW_width, CW_height);
    if(typeof(New_CW.document.all.include)!="undefined"){
    New_CW.document.all.include.style.width = CW_width;
    New_CW.document.all.Max.innerText = "1";
    }

    }else{
    New_CW.show(0, 0, screen.width, screen.height);
    New_CW.document.all.include.style.width = screen.width;
    }
    }window.onfocus  = show_CW;
    window.onresize = show_CW;// Move Window
    var drag_x,drag_y,draging=falsefunction drag_move(e){
    if (draging){
    New_CW.show(e.screenX-drag_x, e.screenY-drag_y, CW_width, CW_height);
    return false;
    }
    }function drag_down(e){
    if(e.button==2)return;
    if(New_CW.document.body.offsetWidth==screen.width && New_CW.document.body.offsetHeight==screen.height)return;
    drag_x=e.clientX;
    drag_y=e.clientY;
    draging=true;
    e.srcElement.setCapture();
    }function drag_up(e){
    draging=false;
    e.srcElement.releaseCapture();
    if(New_CW.document.body.offsetWidth==screen.width && New_CW.document.body.offsetHeight==screen.height) return;
    CW_top  = e.screenX-drag_x;
    CW_left = e.screenY-drag_y;
    }</SCRIPT>
    </HTML>
      

  2.   

    父页面是这样写的:
    <script>
    closes.Click();//close itself
    <script language=javascript>
    var tmp=window.open("login.htm","","width=300,height=200,top="+(screen.availHeight-200)/2+",left="+(screen.availWidth-300)/2);
    tmp.focus()
    </script>
      

  3.   

    hatpdb(喝可乐的猫) 兄
    可能是我没有说清楚,我的意思是,这个具有固定大小的窗口,滚动条,标题栏,状态栏
    等等都没有的,一眼看上去不是一个ie的窗口,就象是c/s结构中的登陆窗口,放在屏幕的中间,所有你的方法只是解决了普通窗口置中的问题
    wanghr100(灰豆宝宝.net) 兄
    你的这个程序我在FAQ中看到过
    我也曾经试了,但是有个问题,就是当我把我的内容放到content中去的时候
    我放入的input都不能输入东西也就是说只能是界面能出来,但是什么输入啊,点击啊
    都不能用,不知道你有没有解决
    xzq686(瞬) 兄
    你直接加了高和宽,我说的效果能出来吗?
    谢谢大家继续关注
      

  4.   

    简而言之,就是一个无边窗口,没有ie标题栏的
    曾经看到一篇文章说过,要先fullscreen,然后resizeto的
    可是我总得不到这个效果
    只有在一台机器上面看到过这个效果
    别的都不行
    是不是和ie有关系?
      

  5.   

    <html><head>
    <title>nowindows</title>
    <script language="javascript">
    minimizebar="images/mini_up.gif";
    minimizebar1="images/mini_dwn.gif";
    minimizebar2="images/mini_ovr.gif"; 
    closebar="images/close_up.gif";
    closebar1="images/close_dwn.gif";
    closebar2="images/close_ovr.gif";       
    icon="images/minus.gif";              function noBorderWin(fileName,w,h,titleBg,moveBg,titleColor,titleWord,scr)  {
      var contents="<html>"+
                   "<head>"+
                           "<title>"+titleWord+"</title>"+
                               "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">"+
                               "<object id=hhctrl type='application/x-oleobject' classid='clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11'><param name='Command' value='minimize'></object>"+
                   "</head>"+
                            "<body topmargin=0 leftmargin=0 scroll=no onselectstart='return false' ondragstart='return false' oncontextmenu='return false'>"+
                               "  <table height=100% width=100% cellpadding=0 cellspacing=1 bgcolor="+titleBg+" id=mainTab>"+
                               "    <tr height=18 style=cursor:default; onmousedown='x=event.x;y=event.y;setCapture();mainTab.bgColor=\""+moveBg+"\";' onmouseup='releaseCapture();mainTab.bgColor=\""+titleBg+"\";' onmousemove='if(event.button==1)self.moveTo(screenLeft+event.x-x,screenTop+event.y-y);'>"+
                               "      <td width="+w+"><span style=font-size:12px;color:"+titleColor+";font-family:宋体;position:relative;top:1px;>::"+titleWord+"::</span></td>"+
                               "      <td width=14><img border=0 width=11 height=11 alt=最小化 src="+minimizebar+" onclick=hhctrl.Click(); onmousedown=this.src='"+minimizebar1+"' onmouseover=this.src='"+minimizebar2+"' onmouseout=this.src='"+minimizebar+"'></td>"+
                               "      <td width=13><img border=0 width=11 height=11 alt=关闭 src="+closebar+" onclick=self.close(); onmousedown=this.src='"+closebar1+"' onmouseover=this.src='"+closebar2+"' onmouseout=this.src='"+closebar+"'></td>"+
                               "    </tr>"+
                               "    <tr height=*>"+
                               "      <td colspan=4>"+
                               "        <iframe name=nbw_v6_iframe src="+fileName+" scrolling="+scr+" width=100% height=100% frameborder=0></iframe>"+
                               "      </td>"+
                               "    </tr>"+
                               "  </table>"+
                            "</body>"+
                   "</html>";  pop=window.open("","_blank","fullscreen=yes");
      pop.resizeTo(w,h);
      pop.moveTo((screen.width-w)/2,(screen.height-h)/2);
      pop.document.writeln(contents);  if(pop.document.body.clientWidth!=w||pop.document.body.clientHeight!=h) 
      {
        temp=window.open("","nbw_v6");
            temp.close();
            window.showModalDialog("about:<"+"script language=javascript>window.open('','nbw_v6','fullscreen=yes');window.close();"+"</"+"script>","","dialogWidth:0px;dialogHeight:0px");
            pop2=window.open("","nbw_v6");
        pop2.resizeTo(w,h);
        pop2.moveTo((screen.width-w)/2,(screen.height-h)/2);
        pop2.document.writeln(contents);
            pop.close();
      }
    }</script>
    </head>
    <OBJECT id=closeit classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
    <PARAM NAME="Command" VALUE="Close"></OBJECT>
    <body onload=javascript:noBorderWin('draw.html','350','380','#000000','#6495ED','#FFFF00','漂亮的图形','no')>
    <Script>
        closeit.Click()
    </Script>
    </body>
    </html>
      

  6.   

    top="+(screen.availHeight-Height)/2+"
    left="+(screen.availWidth-Width)/2
      

  7.   

    makeup ():
    你是想要是一个无边窗口,没有ie标题栏的?
    用Popup方法吧,具体的可参用js手册,还可到msdn上搜索一下
    我以前做过一个登陆的用图片带提示,没标题栏
    试试吧!
      

  8.   

    无边窗口只能用于ie6-的环境!
    嘿嘿~~deleteall8(剑似清风) 贴的是钟钟的无边窗口吧?
    想当初我们在51js狂改这个代码来着,怀念ing……