在新窗口中打开链接,而不是在新选项卡中

时间:2014-04-02 07:10:58

标签: javascript php html hyperlink href

我正在尝试在新窗口中打开一个链接,尝试了一些代码,但是他们正在新标签中显示它。有任何建议请...

<a href="https://www.google.co.in/" target="_blank" >Demo</a>    // this opens in  new tab

 <li onclick="window.open('https://www.google.co.in/')">Demo</li>  // this is also opening in new tab 

先谢谢

3 个答案:

答案 0 :(得分:2)

试试这个:

 <li onclick="window.open('http://publichealth.ecareagora.com','mywindow','height:auto;width:auto;')">Demo</li> 

答案 1 :(得分:0)

尝试

<li onclick="window.open('http://www.google.com','mywindow','height:400;width:400;')">Demo</li> 

答案 2 :(得分:0)

使用以下代码我希望它能解决您的问题

Java脚本

function MM_openBrWindow(theURL,winName,features) 
 { 
  window.open(theURL,winName,features);
  return false;
 }

在html按钮

onclick="MM_openBrWindow('help1.php','','width=750, height=650,left =530,
 top =230, location=no, menubar=no, status=yes,toolbar=yes,
  scrollbars=yes, resizable=yes')