最新的Web開發教程
 

HTML DOM getAttribute() Method

<元素對象

得到的值class的屬性<h1>元素:

var x = document.getElementsByTagName("H1")[0].getAttribute("class");

x的結果將是:

democlass
試一試»

更多"Try it Yourself"下面的例子。


定義和用法

所述getAttribute()方法返回與指定名稱的屬性的元素的,的值。

提示:使用getAttributeNode()如果你想返回屬性為Attr對象的方法。


瀏覽器支持

方法
getAttribute()

句法

參數值
參數 類型 描述
attributename String 需要。 屬性的名稱,你想從價值

技術細節

返回值: 一個String,代表specified屬性的值。

注意:如果屬性不存在,則返回值為null或空字符串("")
DOM版本 核心1級元素對象

例子

更多示例

獲取的價值target的屬性<a>元素:

var x = document.getElementById("myAnchor").getAttribute("target");

x的結果將是:

_blank
試一試»

得到的onclick事件屬性的值<button>元素:

var x = document.getElementById("myBtn").getAttribute("onclick");

x的結果將是:

myFunction()
試一試»

相關頁面

HTML教程: HTML屬性

HTML DOM參考: href="met_element_hasattribute.html"> hasAttribute() Method

HTML DOM參考: href="met_element_removeattribute.html"> removeAttribute() Method

HTML DOM參考: href="met_element_setattribute.html"> setAttribute() Method


<元素對象