例如,我的html
文件:
<script>
window.open('http://stackoverflow.com/');
</script>
我run my file。我希望只打开 Stack Overflow 标签。在 Stack Overflow 选项卡打开之前,我不希望该选项卡。我该怎么做?不使用服务器。
答案 0 :(得分:2)
使用 window.location.href 加载当前标签。
window.location.href='http://stackoverflow.com';
答案 1 :(得分:1)
这显然是因为运行脚本后运行脚本的窗口没有关闭。然后你应该关闭窗口。
<script>
window.open('http://stackoverflow.com/');
window.close();
</script>
答案 2 :(得分:0)
您可以在加载功能中使用window.location.href="http://stackoverflow.com/"