css – Attributes.Add(“class”,“className”),但保留现有的类

前端之家收集整理的这篇文章主要介绍了css – Attributes.Add(“class”,“className”),但保留现有的类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
简单的事情,嗯,我想是的.

我需要在某些条件下使用VB在asp:repeater中的元素中添加一个类.

所以我可以做

ITEMID.Attributes.Add("class","classToAdd")

但是这会删除现有的类,从而拧紧我的CSS.

ITEMID.Attributes("class") = "classToAdd"

似乎也做同样的事情.

如何在元素中添加一个类,同时保留它现有的类值?

解决方法

Use =添加额外的类,并确保先前留下一个空格,否则它将显示为currentClassclassToAdd,其中当前类是currentClass:
ITEMID.Attributes("class") += " classToAdd"

这跟做一样:

ITEMID.Attributes("class") = ITEMID.Attributes("class") + " classToAdd"

因此:

ITEMID.Attributes("class") = "currentClass" + " classToAdd"
原文链接:https://www.f2er.com/css/214470.html

猜你在找的CSS相关文章