js 自定义html标签属性

Posted yangboom

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 自定义html标签属性相关的知识,希望对你有一定的参考价值。

<input type="text" id="txtBox" displayName="123456" />  

 

获取自定义属性值:

 document.getElementById("txtBox").getAttribute("displayName");  
 document.getElementById("txtInput").attributes["displayName"].nodeValue

设置自定义属性值:

document.all.txtBox.setAttribute("displayName ","123456");  
document.getElementById("txtInput").attributes["displayName"].nodeValue = "123456"



以上是关于js 自定义html标签属性的主要内容,如果未能解决你的问题,请参考以下文章

js自定义属性以及自定义一组开关应用

使用自定义 html 属性标签时出错

属性html5自定义标签都有哪些

自定义HTML标签属性

html,网页自定义button外形

html,网页自定义button外形