从html重定向到新窗口?

时间:2019-03-04 07:03:25

标签: javascript html redirect

我有一个要重定向到下一页的html

<a href="www.facebook.com" target="_blank">www.facebbok.com</a>

它正在重定向到localhost:9000/dashboard/www.facebook.com

但是我只需要重定向到www.facebook.com,我可以知道怎么做

2 个答案:

答案 0 :(得分:1)

使用<a href="https://www.facebook.com">来获得所需的重定向行为

<a href="https//www.facebook.com" target="_blank">www.facebook.com</a>

答案 1 :(得分:0)

http://https://添加到您的href中。如果没有它,该链接将自动在您的href后面附加基本网址。

例如<a href="google.com">google</a>会将您发送到http://localhost/google.com,在那里<a href="http://google.com">google</a>会将您重定向到http://google.com