打开一个新URL,但在同一选项卡中

时间:2019-03-16 18:33:17

标签: javascript html google-chrome

你好,下次!

2to3            pip3.7          python3.7-config
2to3-3.7        pydoc3          python3.7m
easy_install-3.7    pydoc3.7        python3.7m-config
idle3           python3         pyvenv
idle3.7         python3-config      pyvenv-3.7
pip3            python3.7       wheel3

好吧,我们所有人都知道这段代码的作用。它将打开一个新标签,将人员重定向到google.com。

我的问题是...如何重定向到类似google的页面,但在同一标签中?

我不想使用标签。

谢谢。

4 个答案:

答案 0 :(得分:1)

也许...

<button onclick="window.location.replace('https://google.com')" />

答案 1 :(得分:1)

我不确定100%确定,但是您可以随时尝试:

window.location="https://google.com";

答案 2 :(得分:0)

您想要window.location.replace()

<button onclick="window.location.replace('https://google.com')" >Navigate away in same tab!</button>

答案 3 :(得分:0)

如果要使用HTML进行此操作:<a href = "page.html" target = "_self"> </a>

<button onclick="window.open('https://google.com', '_self')">Click me</button>