课程
/前端开发
/JavaScript
/Tab选项卡切换效果
这是什么意思
2015-09-20
源自:Tab选项卡切换效果 1-4
正在回答
function $(id) 这是一个方法 方法的名称 是$ id是他的参数 用来获取 标签用的
举报
本课程详细介绍网页页面中最流行常用的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;这行代码有什么用???
3 回答请问同学这是什么意思??function $(id){ return typeof id==='string'?document.getElementsById(id):id; }是什么意思
4 回答function $(id){return typeof id==='string'?document.getElementsById(id):id;},为什么不是字符串的时候返回一个id,那有什么用?