DOM操作應用高階

2022-09-14 04:45:10 字數 903 閱讀 7386

​ tbodies(陣列),thead(乙個元素),tfood(乙個元素),rows,cells

/*小例子

隔行變色,滑鼠移入變色移出還原*/

window.onload=function();

};};

版本1:基礎版本——字串比較

版本1:忽略大小寫——大小寫轉換

版本1:模糊搜尋——search的使用(找到並返回字串出現的位置,沒找到則返回-1)

高亮顯示,篩選

window.onload=function();

};

/*元素排序:轉換——排序——插入*/

window.onload=function(){

var otab=document.getelementbyid('tab1');

var obtn=document.getelementbyid('btn1');

obtn.onclick=function(){

var arr=;

for(var i=0;i什麼是表單?

​ 向伺服器提交資料,比如:使用者註冊

action

​ 提交到**去

onsubmit 提交時發生

onreset 重置時發生

阻止使用者輸入非法字元 阻止事件

輸入時,失去焦點時驗證 onkeyup,onblur

提交時檢查 onsubmit

*後台資料檢查

dom高階操作

1.查詢dom元素document.queryselector與document.queryselectorall document.queryselector element document.queryselector element document.queryselector div doc...

Dom的高階應用

1.對 的操作 html 屬性或方法 說明 caption 儲存著元素的引用 tbodies 儲存著元素的htmlcollection集合 tfoot 儲存著對元素的引用 thead 儲存著對元素的引用 rows 儲存著對元素的htmlcollection集合 rowindex 返回該 行在 內的索...

DOM節點及高階操作

1 attributes得到dom屬性節點 包含所有的預設屬性 自定義屬性的屬性名和屬性值 2 getattribute 得到某個屬性值,括號裡為屬性名,可得到所有屬性 預設屬性和自定義屬性 console.log obox.getattribute id console.log obox.geta...