前端之家收集整理的这篇文章主要介绍了
JS操作HTML自定义属性的方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文实例讲述了JS操作HTML自定义属性的方法。分享给大家供大家参考。具体如下:
HTML代码如下(其中的displayName为自定义属性):
Box").getAttribute("displayName");
document.getElementById("txtInput").attributes["displayName"].nodeValue
Box.setAttribute("displayName ","123456");
document.getElementById("txtInput").attributes["displayName"].nodeValue = "123456"