1

我有一个弹出窗口,我正在使用下面的脚本打开它。我想避免出现在弹出窗口标题上的弹出窗口的 url。

window.open(url, '_blank', 'WIDTH=300,HEIGHT=250');

有什么办法可以避免这种情况?

4

2 回答 2

2

<title>使用元素给文档一个标题。这是好的和有意义的,也是最好的方式。

但是,如果文档没有标题并且位于同一域中,则可以访问其document

var newWindow = window.open(url, '_blank', 'WIDTH=300,HEIGHT=250');
newWindow.document.title = 'Hello, world!';
于 2013-02-13T02:02:39.443 回答
0

There's more here: http://www.w3schools.com/jsref/met_win_open.asp

If you're looking to hide the location bar, add "location=0" to your 3rd argument. If you want to affect the window title, make sure to include a in the page that's loading in the popup.

于 2013-02-13T02:04:30.477 回答