function $(id){
return typeof id==='string'?document.getElementsById(id):id;
}
为什么还需要判断id是不是等于string字符串 而不是直接返回document.getElementsById(id)
什么情况下它才不是字符串?
function $(id){
return typeof id==='string'?document.getElementsById(id):id;
}
为什么还需要判断id是不是等于string字符串 而不是直接返回document.getElementsById(id)
什么情况下它才不是字符串?
2014-09-20
举报