HTML Tips

作者: forks1990 | 来源:发表于2021-06-23 14:19 被阅读0次

DataSet Property are Case-Insensitive

HTML is case-insensitive, but often forgotten that dataset property name either. such as:

<div data-foobar data-fooBar data-foo-bar><div>

data-foobar data-fooBar are the same thing, map to dom dataset API of .dataset.foobar property.

To create a camel case dataset property, use dash separated, such as foo-bar as `dataset.fooBar.

If double dash foo--bar used, map to dataset['foo-Bar'].

相关文章

网友评论

      本文标题:HTML Tips

      本文链接:https://www.haomeiwen.com/subject/myjbyltx.html