для Internet Explorer, вы можете попробовать работать с окном вместо вкладки.Потому что мы не можем получить идентификатор вкладки в IE.
Пример:
<!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>