用於處理
xml文件的
dom元素屬性
屬性名描述
childnodes
返回當前元素所有子元素的陣列
firstchild
返回當前元素的第乙個下級子元素
lastchild
返回當前元素的最後乙個子元素
nextsibling
返回緊跟在當前元素後面的元素
nodevalue
指定表示元素值的讀
/寫屬性
parentnode
返回元素的父節點
previoussibling
返回緊鄰當前元素之前的元素
用於遍歷
xml文件的
dom元素方法
方法名描述
getelementbyid(id) (document)
獲取有指定惟一
id屬性值文件中的元素
getelementsbytagname(name)
返回當前元素中有指定標記名的子元素的陣列
haschildnodes()
返回乙個布林值,指示元素是否有子元素
getattribute(name)
返回元素的屬性值,屬性由
name
指定
DOM方式操作元素屬性
原生js取屬性值getattribute var optionsjson this.getattribute data options 1.獲取 getattribute 名稱 2.設定 setattribute 名稱,值 3.刪除 removeattribute 名稱 用classname選擇元素...
dom元素屬性操作(常規屬性操作)
注 原生js操作樣式,只能操作元素的行內樣式 1.操作類名稱 console.log btnlist.classname console.log btnlist.name console.log btnlist.id console.log btnlist.style console.log btn...
2019 9 8 dom元素節點屬性
chilenodes 當前元素節點的左右子節點 window.nl ad function alert odiv.childnodes 0 nodename em 元素節點三個輸出 alert odiv.childnodes 0 nodetype 1 alert odiv.childnodes 0 ...