w3c 标记验证器与符号 (&) 错误
对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于每个 &标志你已经写了
&
在你的例子中它将是:
for each & sign you got write
&
in your example it would be:
使用
&
表示文字与符号,即使在 URL 中也是如此。http://htmlhelp.com/tools/validator/problems.html#amp
Use
&
for literal ampersands, even in URLs.http://htmlhelp.com/tools/validator/problems.html#amp
替换为
&
Replace with
&
应该是:
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.