DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS操作HTML自定義屬性的方法
JS操作HTML自定義屬性的方法
編輯:關於JavaScript     

本文實例講述了JS操作HTML自定義屬性的方法。分享給大家供大家參考。具體如下:

HTML代碼如下(其中的displayName為自定義屬性):
復制代碼 代碼如下:<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"

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved