问答详情
源自:9-22 编程练习

为什么是lastChild而不是childNodes

trs[i].onmouseout = function(){

this.style.backgroundColor ="#fff";


提问者:兜里揣糖 2015-10-22 17:24

个回答

  • 兜里揣糖
    2015-10-24 15:46:53


    function Highlight(){

    var tbody = document.getElementById('table').lastChild;//这一行,为什么是lastChild,lastChild不是只获取了表格的最后一行吗,

    trs = tbody.getElementsByTagName('tr');   

    for(var i =1;i<trs.length;i++){

    trs[i].onmouseover = function(){

    this.style.backgroundColor ="#f2f2f2";

    trs[i].onmouseout = function(){

    this.style.backgroundColor ="#fff";

    }  

    }


  • 心悦君夕
    2015-10-23 10:30:10

    哪句话?第一个是表示最后一个子节点,第二个表示的是子节点数