在JavaScript中用window.open()新打开一个窗口

没有任何菜单栏,我想在下面加上页面加载进度条,也就是查看里面的状态栏,怎么做?

open Method Internet Development Index

--------------------------------------------------------------------------------

Opens a new window and loads the document specified by a given URL.

What's New for Microsoft® Internet Explorer 6
As of Internet Explorer 6, the _media value of the sName parameter specifies that this method loads a URL into the HTML content area of the Media Bar.

Syntax

oNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
Parameters

sURL Optional. String that specifies the URL of the document to display. If no URL is specified, a new window with about:blank is displayed.
sName Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an a element._blank The sURL is loaded into a new, unnamed window.
_media The sURL is loaded into the HTML content area of the Media Bar. Available in Internet Explorer 6 or later.
_parent The sURL is loaded into the current frame's parent. If the frame has no parent, this value acts as the value _self.
_search Available in Internet Explorer 5 and later. The sURL is opened in the browser's search pane.
_self The current document is replaced with the specified sURL .
_top sURL replaces any framesets that may be loaded. If there are no framesets defined, this value acts as the value _self.

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.

bReplace Optional. When the sURL is loaded into the same window, this Boolean parameter specifies whether the sURL creates a new entry or replaces the current entry in the window's history list. true sURL replaces the current document in the history list
false sURL creates a new entry in the history list.

Return Value

Returns a reference to the new window object. Use this reference to access properties and methods on the new window.

Remarks

By default, the open method creates a window that has a default width and height and the standard menu, toolbar, and other features of 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 the sFeatures parameter is specified, the features that are not defined in the parameter are disabled. Therefore, when using the sFeatures parameter, it is necessary to enable all the features that are to be included in the new window. If the sFeatures parameter is not specified, the window features maintain their default values. In addition to enabling a feature by setting it to a specific 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.

When a function fired by an event on any object calls the open method, the window.open method is implied.

SHOWExample

<SCRIPT LANGUAGE="JScript">
function foo() {
open('about:blank');}
</SCRIPT>
<BODY onclick="foo();">
Click this page and window.open() is called.
</BODY>

When an event on any object calls the open method, the document.open method is implied.

<BUTTON onclick="open('Sample.htm');">
Click this button and document.open() is called.
</BUTTON>

Example

This 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");
温馨提示:内容为网友见解,仅供参考
第1个回答  2008-12-20
你想实现的效果有很多人都试过了,都失败了。你成功了,就破世界纪录了。所以那是不可能完成的。

参考资料:http://zhidao.baidu.com/question/79671477.html?fr=id_push&fl=red

在JavaScript中用window.open()新打开一个窗口
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...

JavaScript Window.open()
方式一:使用一个参数调用window.open("runoob.com");,在新浏览器窗口中打开指定的URL地址。方式二:使用三个参数创建一个空白窗口,例如:Window=window.open('','','width=200,height=100');,新窗口的宽度为200像素,高度为100像素。方式三:使用三个参数打开指定的HTML文件,并设置窗口属性,例...

JavaScript,我用window.open() 打开了一个子窗口如何在子窗口里用window...
你在子窗口里面用window.opener来引用父窗口,所以你可以在子窗口的代码中如下实现:window.opener.location.href = window.opener.location.href \/\/ 这行刷新父窗口。window.close() \/\/关闭自己。

javascript:window.open
答案:JavaScript中的window.open是一个用于打开新窗口或新标签页的方法。详细解释:JavaScript是一种脚本语言,它可以在浏览器中执行各种任务,包括与网页窗口交互。在JavaScript中,window对象代表了浏览器窗口,它拥有许多方法和属性,用于控制窗口的行为和内容。其中,window.open是一个特别有用的方法。关于...

js打开新窗口方法整理
答案:在JavaScript中,打开新窗口可以使用window.open方法。详细解释:JavaScript中的window.open方法是一种非常常见且实用的方式,用于在新的浏览器窗口或标签页中打开一个新的网页。以下是关于该方法的一些重要细节和使用的知识点:1. 基本语法:window.open。其中,URL是你要打开的网页的网址;name是窗口...

js 打开新窗口
js中使用JavaScript window对象(属于BOM)打开新窗口。1、语法:window.open(URL,name,features);该方法用于打开一个新的浏览器窗口或查找一个已命名的窗口。2、参数说明:URL :一个可选的字符串,声明了要在新窗口中显示的文档的 URL。如果省略了这个参数,或者它的值是空字符串,那么新窗口就不会...

如何用javascript在一个新IE窗口中打开一个新页.
--> <\/SCRIPT> 因为着是一段javascripts代码,所以它们应该放在<SCRIPT LANGUAGE="javascript">标签和之间。<!-- 和 -->是对一些版本低的浏览器起作用,在这些老浏览器中不会将标签中的代码作为文本显示出来。要养成这个好习惯啊。window.open ('page.html') 用于控制弹出新的窗口page.html,如果...

window.open窗口特性
在JavaScript中,window.open()方法允许创建新的浏览器窗口,其特性可以通过feature参数进行定制。这个参数是一个功能列表,用逗号分隔。默认情况下,新窗口会包含所有功能,但通过指定特定功能,可以限制窗口显示的特性。例如:alwaysLowered:在IE4+和Navigator 4+中,指定窗口始终位于堆栈底层,即使新窗口激活...

javascript中用window.open()方法时,其中window.name里的_top是什么意 ...
如果网页有框架的话,_top指的是最外一层

javascript的window.open("","_blank");
是啊。如果里面有一个url的话,就把这个url用一个新的窗口打开。可是你这个没有url,就不会打开一个新窗口了,和什么都不写是一样的。

相似回答