HTML DOM getAttributeNode() 方法
定義和用法
getAttributeNode() 方法從當前元素中通過名稱獲取屬性節(jié)點。
提示:如果你僅想返回屬性值請使用 getAttribute 方法。
瀏覽器支持
所有主要瀏覽器都支持 getAttributeNode() 方法
語法
element.getAttributeNode(attributename)
參數
參數 | 類型 | 描述 |
---|---|---|
attributename | String | 必須。你想返回的屬性名。 |
返回值
類型 | 描述 |
---|---|
Attr object | 指定的屬性節(jié)點 |
技術細節(jié)
DOM 版本 | Core Level 1 Element Object |
---|
更多建議: