DOM對元素屬性的操作

2021-10-11 18:59:45 字數 618 閱讀 9657

獲取元素屬性值

input.

getattribute

('type'

)

給元素新增屬性值(第乙個引數是屬性名,第二個引數是屬性的值)必須兩個引數

input.

setattribute

("yes"

,"ok"

)//yes=ok

新增屬性(乙個值)

input.attributes.

setnameditem

(disabled)

建立屬性(用變數接收)

var newattribute = document.

createattribute

('good'

)input.

setattribute

('good'

,'ok'

)

刪除屬性

input.

getattributenode

("type"

)

dom元素屬性操作(常規屬性操作)

注 原生js操作樣式,只能操作元素的行內樣式 1.操作類名稱 console.log btnlist.classname console.log btnlist.name console.log btnlist.id console.log btnlist.style console.log btn...

DOM方式操作元素屬性

原生js取屬性值getattribute var optionsjson this.getattribute data options 1.獲取 getattribute 名稱 2.設定 setattribute 名稱,值 3.刪除 removeattribute 名稱 用classname選擇元素...

DOM元素屬性

用於處理 xml文件的 dom元素屬性 屬性名描述 childnodes 返回當前元素所有子元素的陣列 firstchild 返回當前元素的第乙個下級子元素 lastchild 返回當前元素的最後乙個子元素 nextsibling 返回緊跟在當前元素後面的元素 nodevalue 指定表示元素值的讀...