HTML5数据属性唯一名称?

时间:2015-03-11 20:30:21

标签: html5

您对HTML5 数据属性的独特性有何看法?现在不存在大量的JavaScript插件,它们正在积极寻找数据属性以使其脚本正常工作。在实际情况下,他们不会开除,除非父母有一个类Id假设,但是我确定那里有一个没有?那么使用...... 安全

<!-- The script therfore looking for the class kmgilbert-cfs to fire -->
<div class="kmgilbert-cfs">
  <div
    id="randomid"
    data-title="1"
    data-description="A Demo Description Here"
    data-responsive="true">
  </div>
</div>

或者将以下内容与唯一数据属性名称

一起使用会更明智
<!-- The script therfore looking for the class kmgilbert-cfs to fire -->
<div class="kmgilbert-cfs">
  <div
    id="randomid"
    data-cfs-title="1"
    data-cfs-description="A Demo Description Here"
    data-cfs-responsive="true">
  </div>
</div>

提前致谢,希望这有助于我解决这个问题!

0 个答案:

没有答案