window.open打开新选项卡在移动设备中不起作用?

时间:2019-01-23 06:06:30

标签: javascript html css ajax browser

第一次单击该按钮时有效,但是第二次单击同一按钮时,它不会重定向到移动设备中已打开的选项卡。在浏览器中工作正常。

这是我的代码:

 <li>
 <a  href="http://website2.co.in" target="_blank" onclick="window.open(this.href, 
 'http://website2.co.in'); return false" >Mobility</a>

 </li>

 <script>
     function openInNewTab(url) {
     var win = window.open(url, '_blank');
     win.focus();
     }
 </script>

在网站1:

<li><a class="smoth-scroll" href="http://website1.co.in" onclick="window.open(this.href, this.href); return false" >Mobility1</a>

</li>

0 个答案:

没有答案