function $(){
return typeof id=='string'?document.getElementById(id):id
}
这段函数中的意思以及意义?
typeof id 判断id的类型,如果是string,就返回该id标识的元素document.getElementById(id),否则,返回该id