本文實例講述了JS操作HTML自訂屬性的方法。分享給大家供大家參考。具體如下: HTML程式碼如下(其中的displayName為自訂屬性): 複製程式碼 程式碼如下: 取得自訂屬性值: 複製程式碼複製程式碼 程式碼如下:document.getElementById("txtBox").getAttribute("playdisplayName"); document.getElementById("txtInput").attributes["displayName"].nodeValue 設定自訂屬性值: 複製程式碼 程式碼如下:document.all.txtBox.setAttribute("displayName ","123456"); 🎜> document.getElementById("txtInput").attributes["displayName"].nodeValue = "123456" 希望本文所述對大家的javascript程式設計有所幫助。