老师写的 g方法没太看懂 求解function g(selector)
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 的方法吗?