1扫茅、查找元素
ID查找:var x=document.getElementById("intro");
標(biāo)簽查找:var y=x.getElementsByTagName("p");
2、改變
HTML內(nèi)容:document.getElementById(id).innerHTML=new HTML
屬性:document.getElementById(id).attribute=new value
樣式:document.getElementById(id).style.property=new style
3育瓜、事件
點(diǎn)擊鼠標(biāo):document.getElementById("myBtn").onclick=function(){displayDate()};
網(wǎng)頁(yè)已加載:onload 和 onunload 事件會(huì)在用戶進(jìn)入或離開頁(yè)面時(shí)被觸發(fā)
圖像已加載:
鼠標(biāo)移動(dòng)到元素上:onmouseover 和 onmouseout?
輸入字段被改變:onchange 事件常結(jié)合對(duì)輸入字段的驗(yàn)證來使用葫隙。
提交 HTML 表單:
用戶觸發(fā)按鍵:onmousedown, onmouseup 以及 onclick
4、刪除元素
var parent=document.getElementById("div1");
var child=document.getElementById("p1");
parent.removeChild(child);
var child=document.getElementById("p1");
child.parentNode.removeChild(child);