2

我需要打开一个启用工具栏的新窗口/弹出窗口。

我有这个例子:http: //jsfiddle.net/Pnb7y/13/

有这个代码:

window.open(this.href,"popupwindow", "width=800,height=500,left=200,top=5,scrollbars,toolbar=yes,resizable");

工具栏仅在 Firefox 中显示良好,但在 chrome 或 ie 中不显示

无论如何,您知道在 chrome 中显示工具栏吗?

注意:我想要的另一件事是隐藏地址......但我已经读到由于安全原因这是不可能的......但如果你知道一种方法,我想知道。

最好的问候,丹尼尔

4

2 回答 2

0
function pollwin(url,w, h)
{
pollwindow=window.open(url,'pollwindow','top=0,left=0,status=no,toolbars=no,scrollbars=no,width='+w+',height='+h+',maximize=no,resizable');
pollwindow.focus();
}
于 2013-05-06T11:36:14.290 回答
0
window.open(this.href,"popupwindow",   "width=800,height=500,left=200,top=5,scrollbars,toolbar=yes,resizable");

用这个

window.open(this.href,"popupwindow", "width=800,height=500,left=200,top=5,scrollbars,toolbar=yes,resizable",target="_blank");
于 2013-05-06T11:38:09.150 回答