单击使用本地主机URL(www.google.com)打开的定位标记?

时间:2018-07-17 07:14:06

标签: html

下面是代码

<a href="www.yahoo.com" target="_blank">Yahoo!</a>

它显示下一页网址,如下所示

http://99.1.0.39/test/test-2/www.yahoo.com

如何使用www.yahoo.com打开新页面?

1 个答案:

答案 0 :(得分:0)

尝试使用

如果不确定使用该协议

<a href="//www.yahoo.com" target="_blank">Yahoo!</a>

<a href="https://www.yahoo.com" target="_blank">Yahoo!</a>

<a href="http://www.yahoo.com" target="_blank">Yahoo!</a>