gpt4 book ai didi

javascript - 使用 jQuery 'on' 函数将事件传递给 _.throttle 函数

转载 作者:行者123 更新时间:2023-11-30 17:26:00 26 4
gpt4 key购买 nike

我应该如何将事件传递给 _.throttle 函数。我需要传递导致触发该函数的元素的 ID。这是代码示例:

function aaa (id) {
console.log(id);
}


jQuery('#inputStreet').on('input', _.throttle(aaa(event.target.id), 2000));

控制台显示它无法读取未定义的属性“目标”。

最佳答案

您需要向 _.throttle 传递一个函数,而不是函数调用的结果

jQuery('#inputStreet').on('input', _.throttle(function(event){
aaa(event.target.id);
}, 2000));

关于javascript - 使用 jQuery 'on' 函数将事件传递给 _.throttle 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24268100/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com