得到“没有属性‘REL’”尝试验证页面时在 favicon 标签上

发布于 2024-09-24 06:59:28 字数 257 浏览 9 评论 0原文

当我尝试使用 W3C 验证服务 验证我的页面时,我收到此错误:

Error  Line 13, Column 11: there is no attribute "REL"

<LINK REL="SHORTCUT ICON" HREF="favicon.ico" />

为什么会这样发生?

When I try to validate my page using the W3C validation service, I'm getting this error:

Error  Line 13, Column 11: there is no attribute "REL"

<LINK REL="SHORTCUT ICON" HREF="favicon.ico" />

Why does this happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瀞厅☆埖开 2024-10-01 06:59:28

这是我在网站上使用的代码:

<link href="http://www.mysite.com/favicon.ico" rel="shortcut icon" />

根据 http://validator.w3.org,它可以工作并且有效/

我认为您的代码的主要问题是您使用的是大写字母。请改用小写字母。

由于您的网站图标可能在很多页面上使用,我还建议您使用完整的地址,如上面的代码所示,这样您网站上的所有文件都可以找到该网站图标,无论它们位于哪个文件夹中。

This is the code I'm using on my site:

<link href="http://www.mysite.com/favicon.ico" rel="shortcut icon" />

It works and is valid according to http://validator.w3.org/.

I think the main problem with your code is that you're using uppercase letters. Use lowercase letters instead.

Since your favicon probably is used on many pages, I also suggest you use the full adress, like in the code above, so that all files on your site can find the favicon no matter what folder they are in.

江南月 2024-10-01 06:59:28

问题已解决

<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />

The problem was fixed with

<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文