】。"/> 】。">

首頁  >  文章  >  web前端  >  關於html5中自訂屬性的介紹

關於html5中自訂屬性的介紹

王林
王林轉載
2020-03-21 17:54:242714瀏覽

關於html5中自訂屬性的介紹

定義

H5為我們提供了以"data-" 為前綴定義所需的屬性即可設定自訂屬性。

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

(推薦教學:H5教學

#取得

使用H5自訂屬性物件dataset來取得

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

設定

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;)

相關影片教學推薦:html5影片教學

#

以上是關於html5中自訂屬性的介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除