链接在新选项卡中打开并关注上一个选项卡[重复]
Posted
技术标签:
【中文标题】链接在新选项卡中打开并关注上一个选项卡[重复]【英文标题】:Link open in new tab and focus on previous tab [duplicate] 【发布时间】:2014-10-06 08:44:14 【问题描述】:当链接在后台通过 jquery 在新选项卡中打开时,如何使焦点保持在同一个选项卡上?
【问题讨论】:
【参考方案1】:试试这个代码 -
<p>Click the button to open a new window, and assure that the new window GETS focus (send the new window to the front).</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
var myWindow = window.open("", "", "width=200,height=100");
myWindow.document.write("<p>A new window!</p>");
myWindow.focus();
</script>
【讨论】:
我试过了,但它在新窗口中打开.. Rose:你到底想达到什么目标? @Swetha:我希望在点击链接而不是新窗口时在后台打开一个选项卡..以上是关于链接在新选项卡中打开并关注上一个选项卡[重复]的主要内容,如果未能解决你的问题,请参考以下文章