如何在 XHTML 中使用 HTML5 数据属性?
有谁知道如何在 XHTML 中实现 HTML5 数据属性 (data-*
),而不会使标记无效?
是否有自定义命名空间 hack 可以在现有 HTML 元素上实现此操作?
Does anyone know how the HTML5 data attributes (data-*
) can be implemented in XHTML without rendering the markup as invalid?
Is there a custom namespacing hack that would allow this on existing HTML elements?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用XHTML5。那么您的标记将是 XML 和有效的 XHTML5。
我认为您还可以使用 XML 命名空间在 XHTML1 上使用它们 — 我对 XML 不太熟悉,所以我不确定。
我认为这两种方法技术上都要求您以 XML(而不是
text/html
)的形式提供页面,而 Internet Explorer 不支持这一点。但我怀疑即使你不这样做,它们也会在浏览器中正常工作。You could use XHTML5. Then your mark-up would be XML, and valid XHTML5.
I think you could also use XML namespacing to use them on XHTML1 — I’m not very familiar with XML, so I’m not sure.
I think that both of these methods technically require you to serve your pages as XML (instead of
text/html
), which Internet Explorer doesn’t support. But I suspect they’d work just fine in browsers even if you didn’t.我不知道这是否是一个通用的解决方案,但它对我有用:
即。只需附加
=""
即可使其成为有效的 XML 属性。I don't know if this is a general solution, but it worked for me:
Ie. just append
=""
to make it a valid XML attribute.