慕粉1010304163
2017-04-25 11:03
1.function $(id){ return typeof id==='string'?document.getElementsById(id):id; }有什么作用,为什么要写在这个地方
function $(id){ return typeof id==='string'?document.getElementsById(id):id; }
$ 函数名。
id 参数
如果传入的id是字符串类型的。返回 document.getElementById(id)
简单的代码封装,要不然下面通过id获取dom要写两次,这是任何语言都会用到的封装思想
Tab选项卡切换效果
65465 学习 · 533 问题
相似问题