Can I add a custom attribute to an HTML tag?

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

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


17条回答
  •  孤街浪徒
    2020-11-22 08:42

    You can add, but then you have to write a line of JavaScript code too,

    document.createElement('tag');
    

    to make sure everything fall in place. I mean Internet Explorer :)

提交回复
热议问题