qq_郑岚_0
2015-02-13 15:40
为什么我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);
}
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);
}
你单词写错了
alert(titles.length);
Tab选项卡切换效果
65465 学习 · 533 问题
相似问题