老师写的 g方法没太看懂 求解function g(selector)

来源:3-2 内容输出

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

写回答 关注

3回答

  • 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));

                }


CSS3+JS 实现超炫的散列画廊特效

实现更自由的切换照片的画廊效果,打造超酷的切换动画

46091 学习 · 215 问题

查看课程

相似问题