如何使用带有不完整网址的标记重定向到外部网站?

时间:2017-12-02 14:11:02

标签: html hyperlink

我使用此代码,

<a href="https://stackoverflow.com">test</a>

当我点击test link时,它会重定向到stackoverflow.com工作正常。

但是当我使用这段代码时

<a href="stackoverflow.com">test</a>

它将重定向到example.com/stackoverflow.com

我想知道如何使用代码重定向到stackoverflow.com

<a href="stackoverflow.com">test</a>

1 个答案:

答案 0 :(得分:0)

链接的网址。

可能的值:

绝对网址 - 指向其他网站(例如href =&#34; http://www.example.com/default.htm") 相对URL - 指向网站中的文件(如href =&#34; default.htm&#34;)

链接到页面中具有指定ID的元素(例如href =&#34;#top&#34;)

其他协议(如https://,ftp://,mailto:,file:等等。)

脚本(如href =&#34; javascript:alert(&#39; Hello&#39;);&#34;)

您必须添加前缀

  

的https://