1

我想在我的 Asp.net mvc4 应用程序中添加一个链接到google.com. 所以我将此片段添加到我的视图中:

 <p class="art-page-footer">
        <span id="art-footnote-links"><a href="www.google.com" target="_blank">google.com</a></span>
    </p>

当我单击此链接时,我有一个 url http://localhost:61961/User/www.google.com,但我有一个例外。

那么为什么这个重定向不起作用呢?我怎样才能修复我的代码?

4

2 回答 2

5

尝试使用完整的 URL:

<a href="http://www.google.com" target="_blank">
于 2013-09-09T09:57:30.223 回答
1

href属性采用 URL链接。

3 个可能的值:

  1. 绝对 URL:指向另一个网站(如 href="http://www.google.com")
  2. 相对 URL:指向网站内的文件(如 href="contacts.html")
  3. 锚点 URL:指向页面中的锚点(如 href="#top")
于 2013-09-09T13:21:56.307 回答