Home  >  Article  >  Web Front-end  >  JS method to operate HTML custom attributes_javascript skills

JS method to operate HTML custom attributes_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:14:301014browse

The example in this article describes how JS operates HTML custom attributes. Share it with everyone for your reference. The details are as follows:

The HTML code is as follows (displayName is a custom attribute):

Copy code The code is as follows:

Get custom attribute value:

Copy code The code is as follows:
document.getElementById("txtBox").getAttribute("displayName");
document.getElementById("txtInput").attributes["displayName"].nodeValue

Set custom attribute value:

Copy code The code is as follows:
document.all.txtBox.setAttribute("displayName ","123456");
document.getElementById("txtInput").attributes["displayName"].nodeValue = "123456"

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn