]."/> ].">

Home  >  Article  >  Web Front-end  >  Introduction to custom attributes in html5

Introduction to custom attributes in html5

王林
王林forward
2020-03-21 17:54:242731browse

Introduction to custom attributes in html5

Definition

H5 provides us with "data-" as the prefix to define the required attributes to set custom attributes. .

<div id="box1" data-name="Musk"></div>
<div id="box2" data-full-name="Elon Musk"></div>

(Recommended tutorial: H5 tutorial)

Get

Use H5 custom attribute object dataset to get

let box1 = document.getElementById(&#39;box1&#39;);
let box2 = document.getElementById(&#39;box2&#39;);
 
box1.dataset.name // Musk
box2.dataset.fullName // Elon Musk (驼峰)
 
box1.getAttribute(&#39;data-name&#39;) // Musk
box2.getAttribute(&#39;data-full-name&#39;) // Elon Musk

Settings

let box1 = document.getElementById(&#39;box1&#39;);
let box2 = document.getElementById(&#39;box2&#39;);
 
box1.dataset.name = &#39;马斯克&#39;
box2.setAttribute(&#39;data-full-name&#39;, &#39;埃隆 马斯克&#39;)

Recommended related video tutorials: html5 video tutorial

The above is the detailed content of Introduction to custom attributes in html5. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete