好像'fullscreen=yes'后就不能了,但是你可以自己做一个自己的页面就可以实现你要的功能了提供参考:
更好看的自定义窗口 
<html> <head> 
<script language=javascript> minimizebar="minimize.gif"; //窗口右上角最小化“按钮”的图片 
minimizebar2="minimize2.gif"; //鼠标悬停时最小化“按钮”的图片 
closebar="close.gif"; //窗口右上角关闭“按钮”的图片 
closebar2="close2.gif"; //鼠标悬停时关闭“按钮”的图片 
icon="icon.gif"; //窗口左上角的小图标 function noBorderWin(fileName,w,h,titleBg,moveBg,titleColor,titleWord,scr) //定义一个弹出无边窗口的函数,能数意义见下面“参数说明”,实际使用见最后的实例。 
/* 
------------------参数说明------------------- 
fileName :无边窗口中显示的文件。 
w     :窗口的宽度。 
h     :窗口的高度。 
titleBg :窗口“标题栏”的背景色以及窗口边框颜色。 
moveBg :窗口拖动时“标题栏”的背景色以及窗口边框颜色。 
titleColor :窗口“标题栏”文字的颜色。 
titleWord :窗口“标题栏”的文字。 
scr :是否出现滚动条。取值yes/no或者1/0。 
-------------------------------------------- 
*/ 

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'>"+ 
" <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=18 align=center><img height=12 width=12 border=0 src="+icon+"></td>"+ 
" <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=12 height=12 alt=最小化 src="+minimizebar+" onmousedown=hhctrl.Click(); onmouseover=this.src='"+minimizebar2+"' onmouseout=this.src='"+minimizebar+"'></td>"+ 
" <td width=13><img border=0 width=12 height=12 alt=关闭 src="+closebar+" onmousedown=self.close(); 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) //如果无边窗口不是出现在纯粹的IE窗口中 

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> <body> <!----------------- 实例一(按钮),修改参数可改变窗口样式 -----------------> 
<button onclick=noBorderWin('test.html','400','240','#000000','#333333','#CCCCCC','一个无边窗口的测试例子','yes');>open</button> <br><br> <!----------------- 实例二(链接),修改参数可改变窗口样式 -----------------> 
<a href=#none onclick=noBorderWin('test.html','400','240','#000000','#333333','#CCCCCC','一个无边窗口的测试例子','yes');>open</a> <br><br> <!----------------- 实例三(图片),修改参数可改变窗口样式 -----------------> 
<img src=none height=30 width=60 alt=open style="cursor:hand" onclick=noBorderWin('test.html','400','240','#000000','#333333','#CCCCCC','一个无边窗口的测试例子','no');>无滚动条的 </body> </html> 
test.htm 
<html> <head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
<title>only test</title> 
<style type=text/css> 
.font1 { color:red; } 
body,td,p { font-size:12px; } 
</style> 
</head> <body bgcolor=#EEEEEE> 
<script language=javascript> 
document.writeln("JavaScript支持,测试通过。"); 
</script> 
<p class=font1>如果您看到字是红色,则内部CSS支持的测试通过。</p> 
<iframe height=60 src=about:iframe支持测试通过!></iframe> 
<br><br>如果您在上面看不到有内嵌的页子出现,那么iframe支持测试失败。 
<br>另外请点击右上角的<b>最小化、关闭</b>按钮,看是否有效。 
</body>

解决方案 »

  1.   

    open Method--------------------------------------------------------------------------------Opens a new window and loads the document specified by a given URL, or opens a blank document if a URL is not provided.SyntaxoNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
    ParameterssURL 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. Return ValueReturns a reference to the new window object. Use this reference to script properties and methods on the new window.ResBy default, the open method creates a window that has a default width and height and the standard menu, toolbar, and other features of Microsoft?Internet Explorer. You can alter this set of features by using the sFeatures parameter. This parameter is a string consisting of one or more feature settings. When one feature is specified, any additional features that are not specified are disabled. If no features are specified, the window features maintain their default values. In addition to enabling a feature with the specified possible value, simply listing the feature name also enables that feature for the new window.Internet Explorer 5 allows further control over windows through the implementation of title in the sFeatures parameter of the open method. Turn off the title bar by opening the window from a trusted application, such as Microsoft?Visual Basic?or an HTML Application (HTA). These applications are considered trusted, because each uses Internet Explorer interfaces instead of the browser.Windows CEIn Microsoft?Windows CE, the document object is not available through scripting for a window opened using the open method.ExampleThis example uses the open method to create a new window that contains Sample.htm. The new window is 200 pixels by 400 pixels and has a status bar, but it does not have a toolbar, menu bar, or address field.window.open("Sample.htm",null,
        "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");