我在菜单栏中有一些链接。我想如果用户单击链接,例如“ http://example.com/Archive”,并且在选项卡中打开此链接时,如果用户再次单击该链接,浏览器将集中在先前打开的选项卡上。 如何使用javascript? *该解决方案也必须支持旧的Internet浏览器。
答案 0 :(得分:1)
为每个链接赋予唯一的target
。
<a href="http://example.com/Archive" target="uniqueTarget">somelink</a>
或
window.open('http://example.com/Archive','uniqueTarget')
答案 1 :(得分:1)
对于Internet Explorer,您可以尝试使用Window而不是tab。因为我们无法在IE中获取标签页ID。
示例:
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">click here...</button>
<script>
function myFunction() {
var myWindow = window.open("", "demo", "width=200,height=100");
myWindow.document.write("<p>A new window!</p>");
myWindow.focus();
}
</script>
</body>
</html>