oNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
sURL Optional. String爐hat specifies the URL of the document to display. If no URL is specified, a new window with about:blank is displayed. 
sName Optional. String爐hat specifies the name of the window. This name is used as the value for the TARGET attribute on a FORM or an A element. In Microsoft?Internet Explorer 5 and later, specifying the value _search opens sURL in the browser's search pane. 
sFeatures Optional. String爐hat specifies the window ornaments to display. The following features are supported: channelmode = { yes | no | 1 | 0 } Specifies whether to display the window in theater mode and show the channel band. The default is no. 
directories = { yes | no | 1 | 0 } Specifies whether to add directory buttons. The default is yes. 
fullscreen = { yes | no | 1 | 0 } Specifies whether to display the browser in a full-screen or normal window. The default is no, which displays the browser in a normal window. Use full-screen mode carefully. Because this mode hides the browser's title bar and menus, you should always provide a button or other visual clue to help the user close the window. ALT+F4 also closes the new window. 
height = number Specifies the height of the window, in pixels. The minimum value is 100. 
left = number Specifies the left position, in pixels. This value is relative to the upper-left corner of the screen. 
location = { yes | no | 1 | 0 } Specifies whether to display the input field for entering URLs directly into the browser. The default is yes. 
menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar. The default is yes. 
resizable = { yes | no | 1 | 0 } Specifies whether to display resize handles at the corners of the window. The default is yes. 
scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal and vertical scroll bars. The default is yes. 
status = { yes | no | 1 | 0 } Specifies whether to add a status bar at the bottom of the window. The default is yes. 
titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar for the window. This parameter is ignored unless the caller is an HTML Application or a trusted dialog box. The default is yes. 
toolbar = { yes | no | 1 | 0 } Specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available. The default is yes. 
top = number Specifies the top position, in pixels. This value is relative to the upper-left corner of the screen. 
width = number Sets the width of the window, in pixels. The minimum value is 100. 
 
bReplace Optional. Boolean爐hat specifies whether the URL that is loaded into the new page should create a new entry in the window's browsing history or replace the current entry in the browsing history. If set to true, no new history entry is created. 

解决方案 »

  1.   

    例如:
    window.open("Sample.htm",null,
        "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
      

  2.   

    sFeatures Optional. This String parameter is a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following features are supported.channelmode = { yes | no | 1 | 0 } Specifies whether to display the window in theater mode and show the channel band. The default is no. 
    directories = { yes | no | 1 | 0 } Specifies whether to add directory buttons. The default is yes. 
    fullscreen = { yes | no | 1 | 0 } Specifies whether to display the browser in full-screen mode. The default is no. Use full-screen mode carefully. Because this mode hides the browser's title bar and menus, you should always provide a button or other visual clue to help the user close the window. ALT+F4 closes the new window. A window in full-screen mode must also be in theater mode (channelmode).  
    height = number Specifies the height of the window, in pixels. The minimum value is 100. 
    left = number Specifies the left position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0.  
    location = { yes | no | 1 | 0 } Specifies whether to display the input field for entering URLs directly into the browser. The default is yes. 
    menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar. The default is yes. 
    resizable = { yes | no | 1 | 0 } Specifies whether to display resize handles at the corners of the window. The default is yes. 
    scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal and vertical scroll bars. The default is yes. 
    status = { yes | no | 1 | 0 } Specifies whether to add a status bar at the bottom of the window. The default is yes. 
    titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar for the window. This parameter is ignored unless the calling application is an HTML Application or a trusted dialog box. The default is yes. 
    toolbar = { yes | no | 1 | 0 } Specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available. The default is yes. 
    top = number Specifies the top position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0.  
    width = number Sets the width of the window, in pixels. The minimum value is 100. 
      

  3.   

    www.52its.com的技术文章中有一篇“window.open详解”,你去看看
      

  4.   

    width,height:新窗口宽和高
    menubar:菜单栏
    toolbar:工具栏
    scroll:滚动条
    fullscreen=yes/no:打开窗口是否全屏``还有很多其他属性,可以搜索查查
      

  5.   

    < SCRIPT LANGUAGE="javascript"> 
      < !--   window.open ("page.html", "newwindow", "height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no")   //写成一行   -->   
    < /SCRIPT>   
    参数解释:   
    < SCRIPT LANGUAGE="javascript"> js脚本开始;   
    window.open 弹出新窗口的命令;   
    "page.html" 弹出窗口的文件名;   
    "newwindow" 弹出窗口的名字(不是文件名),非必须,可用空"代替;   
    height=100 窗口高度;   
    width=400 窗口宽度;   
    top=0 窗口距离屏幕上方的象素值;   
    left=0 窗口距离屏幕左侧的象素值;   
    toolbar=no 是否显示工具栏,yes为显示;   
    menubar,scrollbars 表示菜单栏和滚动栏。   
    resizable=no 是否允许改变窗口大小,yes为允许;   
    location=no 是否显示地址栏,yes为允许;   
    status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许;   
    < /SCRIPT> js脚本结束