html – 为什么这个div id中有斜杠?

前端之家收集整理的这篇文章主要介绍了html – 为什么这个div id中有斜杠?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在浏览一个网站,发现这行代码
<div class="section slideshow" id="/featured/">

我之前从未在id标签中看到斜杠,这是编码不好,数据库写出的问题,还是其他什么?

解决方法

id属性中的斜杠不是有效字符:

ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters,digits ([0-9]),hyphens (“-“),underscores (“_”),colons (“:”),and periods (“.”).

原文链接:https://www.f2er.com/html/226947.html

猜你在找的HTML相关文章