html question

7.What are data- attributes good for?

  • Carrots
  • Celery
  • Radishes

普通用法:

// Select all elements with a 'data-flowering' attribute
document.querySelectorAll('[data-flowering]');
// Select all elements with red leaves
document.querySelectorAll('[data-foliage-colour="red"]');

data-特性:

data-属性用于存储某些特定的数据,而无需频繁地调用ajax向后台请求数据。
主要是解决,属性不够用。但是有多余的信息需要存储。
参考内容

你可能感兴趣的:(html question)