将 id 引用放入 div 标签中

发布于 2024-09-11 02:19:34 字数 174 浏览 2 评论 0原文

我必须在 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 技术交流群。

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

发布评论

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

评论(2

听你说爱我 2024-09-18 02:19:34

“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)

你是年少的欢喜 2024-09-18 02:19:34

这取决于您的文档类型。对于 HTML5,我建议将其更改为:

<div data-rif="5" id="km25" class="mini_button_form">25km</div>

如果必须是 (X)HTML4,那么您可以将数据放入 class 属性中并使用类似 jQuery 元数据插件

<div id="km25" class="mini_button_form { rif:5 }">25km</div>

(请注意,正如康拉德建议的那样,我也更改了 ID)

It depends on your doctype. For HTML5, I'd recommend changing it to:

<div data-rif="5" id="km25" class="mini_button_form">25km</div>

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.

<div id="km25" class="mini_button_form { rif:5 }">25km</div>

(Note I changed the ID's too, as Konrad suggested)

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