w3c 标记验证器与符号 (&) 错误

发布于 2024-10-07 06:29:48 字数 313 浏览 3 评论 0原文

对于 URL 或 HTML 标记中其他位置中存在的 & 的 w3c 验证错误,是否有任何解决方法?
它说:

&没有开始角色参考。 (& 可能应该转义为 &。)

在我的例子中,& 符号是头像缩略图的 url 的一部分。这是 url 有问题的部分:

c91588793296e2?s=50&d=http%3A%2F%

Is there any workaround for the w3c validation error for an & present in urls or some other place in HTML markup?
It says:

& did not start a character reference. (& probably should have been escaped as &.)

The ampersand in my case is a part of a url for gravatar thumbnail. This is the problematic part of a url:

c91588793296e2?s=50&d=http%3A%2F%.

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

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

发布评论

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

评论(4

千秋岁 2024-10-14 06:29:48

对于每个 &标志你已经写了 &
在你的例子中它将是:

c91588793296e2?s=50&d=http%3A%2F%

for each & sign you got write &
in your example it would be:

c91588793296e2?s=50&d=http%3A%2F%
淡看悲欢离合 2024-10-14 06:29:48

使用 & 表示文字与符号,即使在 URL 中也是如此。

http://htmlhelp.com/tools/validator/problems.html#amp

Use & for literal ampersands, even in URLs.

http://htmlhelp.com/tools/validator/problems.html#amp

桃扇骨 2024-10-14 06:29:48

替换为 &

Replace with &

顾北清歌寒 2024-10-14 06:29:48

应该是:

c91588793296e2?s=50&d=http%3A%2F%。

注意&

我知道这感觉很奇怪,但是&符号必须被编码为 html 实体,这些实体用 & 符号表示,令人困惑。

should be:

c91588793296e2?s=50&d=http%3A%2F%.

notice the &

I know it feels wonky, but ampersands have to be encoded as html entities, which are confusingly denoted with ampersands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文