摘要: debounce 函数 function debonce (method) { clearTimeout(method.timer) method.timer = setTimeout( function () { method () }, 50) } debonce 函数保证函数执行频率最多 50 阅读全文
posted @ 2017-11-17 21:46 summercyz 阅读(164) 评论(0) 推荐(0) 编辑