将 id 引用放入 div 标签中
我必须在 div 中插入 id 引用。我创建了一个 rif 属性:
<div rif="5" id="25km" class="mini_button_form">25km</div>
但这在 w3c 中无效。
我该怎么做?
i have to insert an id reference in a div. i've create an rif attribute:
<div rif="5" id="25km" class="mini_button_form">25km</div>
but this is w3c invalid.
How can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“ID 和 NAME 令牌必须以字母 ([A-Za-z]) 开头,后可跟任意数量的字母、数字 ([0-9])、连字符 (“-”)、下划线 (“_”) )、冒号 (“:”) 和句点 (“.”)。” (http://www.w3.org/TR/html401/types .html#类型名称)
"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 (".")." (http://www.w3.org/TR/html401/types.html#type-name)
这取决于您的文档类型。对于 HTML5,我建议将其更改为:
如果必须是 (X)HTML4,那么您可以将数据放入
class
属性中并使用类似 jQuery 元数据插件。(请注意,正如康拉德建议的那样,我也更改了 ID)
It depends on your doctype. For HTML5, I'd recommend changing it to:
If it has to be (X)HTML4 then you could put the data in the
class
attribute and use something like the jQuery Metadata plugin.(Note I changed the ID's too, as Konrad suggested)