如何从链接打开地址

时间:2012-07-10 00:29:31

标签: html

我想在我的网页上创建一个链接,我只想在我的网站上打开www.google.com。

我有这样的标签: <a target='_blank' href='www.google.com'>并且正在打开此链接http://localhost:78/efm/efm21/www.google.com

我读了一些文章,他们说要使用../在我的情况下返回一个目录我必须移动../../../才能到达www.google.com才能打开我仍然坚持,它打开localhost:78/www.google.com.

我的问题是如何通过链接直接打开www.google.com。

3 个答案:

答案 0 :(得分:4)

添加协议http://

<a href="http://www.google.com">Google</a>

答案 1 :(得分:3)

您必须指定相对于协议或更高版本的完整路径。

<a href="//www.google.com/">link</a>
or
<a href="http://www.google.com/">link</a>

答案 2 :(得分:0)

您必须指定协议,否则浏览器将尝试在您的网站上打开名为www.google.com的文件。

您有两种选择。

<强>#1:

<a href="//www.google.com" target="_blank">将使用您网站的相同协议打开Goog​​le,例如

https://example.com

将会打开

https://www.google.com

和     http://example.com 将打开

http://www.google.com

<强>#2:

<a href="http://www.google.com" target="_blank"><a href="https://www.google.com" target="_blank">将使用HTTPHTTPS打开Goog​​le,不受您网站协议的影响。