href 值附加在服务器名称之后
I am specifying Please visit <a href="www.yahoo.com">Yahoo</a>
and the browser appends the server name in front e.g. https://susref.congnos.com/www.yahoo.com
Should I change my href
to <a href="https:\\www.yahoo.com">Yahoo</a>
will solve the issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 href 中的 url 前面添加
http://
。例如
访问 Yahoo
Add
http://
on the front of the url in your href.e.g.
<a href="http://www.yahoo.com">Visit Yahoo</a>
您需要指定方案,例如,
而不是没有方案(http:// 位)
浏览器假定链接与您的网站相关,
You need to specify the scheme e.g.
Instead of
Without the scheme (the http:// bit) the browser assumes the link is relative to your site