我可以使用“空白”类来识别 dom 的常见元素以便使用 jquery 执行操作吗?我知道标签 Id 和 Name 在 dom 中必须是唯一的,但是,如果我需要识别相似的元素但不需要具有相同的样式......例如,在这种情况下:
<section class="custom-section identify1"></section>
<section class="custom-section identify1"></section>
<section class="custom-section identify2"></section>
<section class="custom-section identify1"></section>
<section class="custom-section identify2"></section>
<section class="custom-section identify1"></section>
在这种情况下custom-section
,设置部分的样式并将相似的部分分组... ¿ 正确吗?现在使用 jquery 我可以使用 identifyX 获取所有部分:
$(".identify1)
我知道在 html5 中存在自定义数据属性 (Data-*)自定义数据 HTML5 我可以将此标签用于此功能吗?