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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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");
参考技术A 你想实现的效果有很多人都试过了,都失败了。你成功了,就破世界纪录了。所以那是不可能完成的。

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

javascript:window.open 不起作用?

【中文标题】javascript:window.open 不起作用?【英文标题】:javascript: window.open does not work? 【发布时间】:2016-11-05 16:10:42 【问题描述】:

我正在尝试实现这个:

https://***.com/a/30225669/533426

但是,一个简单的打开窗口不起作用,请参见此处:

http://codepen.io/anon/pen/LkLNaX

javascript:

 window.open('http://www.bippo.com', '_blank');
alert("wtf");

我错过了什么吗?

这应该特别适用于 android 和 iphone 手机。

【问题讨论】:

浏览器中的一般规则是由于滥用/安全性,它需要用户事件才能打开新窗口。还取决于用户安全设置...有些人可能会看到提示...如果您尝试在没有用户事件的情况下打开,其他人什么也看不到 在this post看到正确的答案。 即使手动触发也不行:见codepen.io/anon/pen/LkLNaX 在您的脚本中有几个未定义的变量(上、左...)。如果你不解决这个问题,它就无法工作。 【参考方案1】:

您的 codepen 代码有效,只需检查您的浏览器弹出块。

window.open("http://www.bippo.com",'_blank');

【讨论】:

错误信息是这样的:pen.js:2 Uncaught SecurityError: Blocked a frame with origin "http://s.codepen.io" from accessing a frame with origin "http://codepen.io". Protocols, domains, and ports must match.【参考方案2】:

试试这个

<a href="javascript:test()">test</a>

function test()
    window.open("http://www.bippo.com",'_blank');
    alert("wtf");  

【讨论】:

【参考方案3】:

也许您在别处重新定义了 open 函数,或者 window.open() 不是由用户操作直接调用的。特别是在移动浏览器中,您不能从计时器或任何异步任务中调用此函数。

【讨论】:

以上是关于在JavaScript中用window.open()新打开一个窗口的主要内容,如果未能解决你的问题,请参考以下文章

jsp中用window.open()怎么设置打开的新页面默认最大化显示

js 怎么在document.location.href中用target

JavaScript-打开新窗口(window.open)

Javascript window.open在Windows7中不聚焦

javascript:window.open 不起作用?

javascript window.open [重复]