# 引入

import { throttle } from 't-comm';

// or

import { throttle} from 't-comm/lib/throttle/index';

# throttle(fn, time)

描述

节流

连续触发事件但是在 n 秒中只执行一次函数

参数

参数名 类型 描述
fn function

主函数

time number

间隔时间,单位 ms

返回:

闭包函数

示例

function count() {
 console.log('xxxxx')
}
window.onscroll = throttle(count, 500)
Last Updated: 2024/10/11 07:54:02