Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过它的 CSS 向元素添加数据属性吗?
.myClass{ /* assign data attribute here */ }
CSS 用于演示而不是数据(操纵标记)。
不,这是不可能的。你必须使用其他东西,比如javascript。
不,这不是 CSS 的用途。CSS 的理念恰恰是关于表现的,而不是关于数据的。如果必须,您可以做的是在不同元素中具有不同的可能值,并通过 CSS 更改哪个元素可见。