var oUl1 = document.getElementById("ul1");
var aLi = oUl1.getElementsByTagName("li");
第二条 什么意思 为什么要aLi=oUl1
li是oUl1的子元素,所以从oUl1开始查找会比从document查找要快