问答详情
源自:3-2 内容输出

老师写的 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 的方法吗?

提问者:9号攻城狮 2015-12-04 20:00

个回答

  • qq_安伊偌拉_0
    2015-12-07 10:30:19

    如果method="getElementById",document[method](selector.substr(1))就是document["getElementById"](selector.substr(1)),也就是document.getElementById(selector.substr(1))

  • 9号攻城狮
    2015-12-05 17:50:40

    return document[method](selector.substr(1)) 这句话返回的是什么意思呢。 

    document[method] 主要是这个写法有点接受不了,没这么用过

  • 木子舟义
    2015-12-04 20:38:34

    function g(selector){

                    return selector.substring(0, 1) == '.' ? document.getElementsByClassName(selector.substring(1)) : document.getElementById(selector.substring(1));

                }