在html和Javascript中打开新窗口中的URL

时间:2016-06-08 11:06:20

标签: html html5

我正在尝试在新窗口中打开给定的URL,而不是在新的TAB中。

人们建议使用窗口打开

function myFunction() { window.open("http://www.google.com"); }

但是它在新标签的同一浏览器中打开了网址。但我需要在相同的浏览器和新窗口中打开它

如下图所示

enter image description here

任何人都可以帮助我,

提前致谢

3 个答案:

答案 0 :(得分:2)

您可以使用此编码在新的浏览器窗口中打开网址。完美地工作:

<script>
function pop_up(url){
window.open(url,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=1076,height=768,directories=no,location=no') 
}
</script>

 <a href="http://www.google.com" onclick="pop_up(this);">OPEN</a>

答案 1 :(得分:1)

以特定的高度和宽度调用它。

window.open(url, windowName, "height=200,width=200");

答案 2 :(得分:1)

window.open('http://www.google.com','newwin', 'width=' + window.screen.availWidth + ',height=' + window.screen.availHeight + ',screenX=0,screenY=0,top=0,left=0left=0,top=0,scrollbars,resizable,replace=true');

上面的代码将根据屏幕分辨率获得屏幕高度和宽度