9号攻城狮
2015-12-04 20:00
function g(selector){
var method = selector.substr(0,1)=='.'?'getElementByClassName':'getElementById';
return document[method](selector.substr(1));
}
return document[method](selector.substr(1)) 这句话返回的是什么,为什么我用alert(document[method](selector.substr(1))的时候 返回的是null)
document[method] 这个写法以前没见过,是什么意思呢? 是调用document 的方法吗?
如果method="getElementById",document[method](selector.substr(1))就是document["getElementById"](selector.substr(1)),也就是document.getElementById(selector.substr(1))
return document[method](selector.substr(1)) 这句话返回的是什么意思呢。
document[method] 主要是这个写法有点接受不了,没这么用过
function g(selector){
return selector.substring(0, 1) == '.' ? document.getElementsByClassName(selector.substring(1)) : document.getElementById(selector.substring(1));
}
CSS3+JS 实现超炫的散列画廊特效
46091 学习 · 215 问题
相似问题