一段关于 call 的代码没看懂,求解释.

unction get_hfs() {
    document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
}
get_hfs();
function throttle(method, context) {
    clearTimeout(method.timer);
    method.timer = setTimeout(function() {
        method.call(context);
    }, 100)
}
window.onresize = function() {
    throttle(get_hfs);
}

 method.timer = setTimeout(function() {

        method.call(context);

    }, 100)


//context 不是没有参数传进来吗?这一句话有什么用?


熠熠生阳
浏览 1222回答 1
1回答

Amumu

在上面呀,method,content,引用作用域逐层往上找
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript