为了账号安全,请及时绑定邮箱和手机立即绑定

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

正在回答

3 回答

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

1 回复 有任何疑惑可以回复我~

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

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

0 回复 有任何疑惑可以回复我~

function g(selector){

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

            }


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信