我有一些内容应当保存其中的一些数据,有些则使用一些风格。
请允许我说,我有4×4网,这样:
我需要储存每个囚室的坐标,并通过javascript加以使用,但也能够单独打造。
我知道,我可以拯救同类数据:
<div class="cell row-3 col-3"></div>
the
我也知道,在 c中可以做的细胞:
.grid .cell[data-row="3"][data-col="3"]{...some style...}
然而,这两种方法都比替代方法(如数据属性的数据和按类别分类的风格)缓慢。
So which one is more effective? Or which one is best in what situations?
I guess i can include both classes and data in the elements (like in the fiddle), but is this the best approach?