问答详情
源自:1-4 js实现切换效果

求救!怎么回事呢??

为什么我alert显示都是undefined?????


function $(id){

return typeof id==='string'?document.getElementById(id):id;

}


window.onload = function(){

//获取鼠标滑过或点击的标签和要切换内容的元素

var titles = $('notice-tit').getElementsByTagName('li');

divs = $('notice-con').getElementsByTagName('div');

alert(titles.lenght);

}


提问者:qq_郑岚_0 2015-02-13 15:40

个回答

  • 木白121
    2015-03-30 00:05:04

    function $(id) {

    // body...

    return  typeof  id==='string'?document.getElementById(id):id;

    }

    window.onload =function(){

                 var  titles=$('ontice-tit').getElementsByTagName('li');

                 var divs=$('ontice-con').getElementsByTagName('div');

               

                  alert(titles.length);

                          }


  • Goodboyms
    2015-02-13 15:50:32

    你单词写错了

  • Goodboyms
    2015-02-13 15:50:08

    alert(titles.length);