试图链接到外部网站

时间:2017-03-21 22:09:26

标签: javascript html

<html>
<body>
<a href = "www.google.com" target = "blank_">google</a>
</body>
<html>

我得到了什么:www.mysite.com/www.google.com

我想要的是:www.google.com /

2 个答案:

答案 0 :(得分:1)

您需要在网址的开头加http://

<html>
<body>
 <a href = "http://www.google.com" target = "blank_">google</a>
</body>
<html>

答案 1 :(得分:0)

那是因为你没有用网址写

试试这个

<a href="https://www.google.com" target="_blank">Google</a>