hengly
2015-10-07 17:17
function $(id){
return typeof id=='string'?document.getElementById(id):id;
}
这段代码实际上就是,把document.getElementById,变成了$。这样不会重复的书写document.getElementById这段代码,直接写一个$就可以。如果,你把这段代码删除了,那面,你下面写的代码中$就要需要换成document.getElementById,比如var titles=$('notice-tit').getElementsByTagName('li') ,写成,var titles=document.getElementById('notice-tit').getElementsByTagName('li') ,这样就行了
这段代码很重要,表示通过id属性获取页面元素对象的应用
Tab选项卡切换效果
65465 学习 · 533 问题
相似问题