<html>
<body>
<a href = "www.google.com" target = "blank_">google</a>
</body>
<html>
我得到了什么:www.mysite.com/www.google.com
我想要的是:www.google.com /
答案 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>