第一次单击该按钮时有效,但是第二次单击同一按钮时,它不会重定向到移动设备中已打开的选项卡。在浏览器中工作正常。
这是我的代码:
<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>