新增選擇器
window.onload=function(){
varoDiv=document.querySelector('#div1');
alert(oDiv);//彈出[object HTMLDivElement]熔号,表示選擇了該Div
//如果要選擇多個元素用querySelectorAll
varaLi=document.querySelectorAll('.list li');
alert(aLi.length);//8
}
新增選擇器
window.onload=function(){
varoDiv=document.querySelector('#div1');
alert(oDiv);//彈出[object HTMLDivElement]熔号,表示選擇了該Div
//如果要選擇多個元素用querySelectorAll
varaLi=document.querySelectorAll('.list li');
alert(aLi.length);//8
}