课程
/前端开发
/JavaScript
/Tab选项卡切换效果
封装的时候直接 return document.getElementById('id');和加判断有什么差别?
2015-02-19
源自:Tab选项卡切换效果 1-4
正在回答
测试了下发现id的值确实不能设置成数字(但是一般也不会有人设置成数字吧orz...),谢谢
如果设置函数时传入数字呢,如果没有这条语条,网页就会报错。这条语句保证输入参数的类型为字符型。
AnthonyYY 提问者
举报
本课程详细介绍网页页面中最流行常用的tab切换效果
5 回答function $(id){ return typeof id==='string'?document.getElementById(id):id; }
7 回答function $(id){ return typeof id==='string'?document.getElementById(id):id; }
3 回答function $(id) { return typeof id==='string' ? document.getElementById(id):id;这行代码有什么用???
1 回答function $(id){ return typeof id==="string"?document.getElementById("id"):id}
3 回答请问同学这是什么意思??function $(id){ return typeof id==='string'?document.getElementsById(id):id; }是什么意思