1 //ul 记为 <ul> 对象 2 ul.firstChild; 3 ul.childNodes[0]; 4 ul.children[0]; 5 ul.getElementsByTagName('li')[0]; 6 ul.querySelector('li');