我有一个弹出窗口,我正在使用下面的脚本打开它。我想避免出现在弹出窗口标题上的弹出窗口的 url。
window.open(url, '_blank', 'WIDTH=300,HEIGHT=250');
有什么办法可以避免这种情况?
我有一个弹出窗口,我正在使用下面的脚本打开它。我想避免出现在弹出窗口标题上的弹出窗口的 url。
window.open(url, '_blank', 'WIDTH=300,HEIGHT=250');
有什么办法可以避免这种情况?
<title>
使用元素给文档一个标题。这是好的和有意义的,也是最好的方式。
但是,如果文档没有标题并且位于同一域中,则可以访问其document
:
var newWindow = window.open(url, '_blank', 'WIDTH=300,HEIGHT=250');
newWindow.document.title = 'Hello, world!';
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.