JS操作HTML自定义属性的方法

前端之家收集整理的这篇文章主要介绍了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"

希望本文所述对大家的javascript程序设计有所帮助。

原文链接:https://www.f2er.com/js/55786.html

猜你在找的JavaScript相关文章