Can I add a custom attribute to an HTML tag?

后端 未结 17 2303
醉话见心
醉话见心 2020-11-22 08:06

Can I add a custom attribute to an HTML tag like the following?


17条回答
  •  不思量自难忘°
    2020-11-22 08:26

    var demo = document.getElementById("demo")
    console.log(demo.dataset.myvar)
    // or
    alert(demo.dataset.myvar)
    //this will show in console the value of myvar
    anything

提交回复
热议问题