gpt4 book ai didi

javascript - jQuery $(this) 内部函数

转载 作者:行者123 更新时间:2023-12-01 02:32:45 25 4
gpt4 key购买 nike

我想将 $(this) 传递给函数,但我不确定。有一个类似的线程,但我仍然无法使其工作。我希望有人能帮助我。

$(document).ready(function() {
var delay = (function(){
var timer = 0;
return function(callback, ms){
clearTimeout (timer);
timer = setTimeout(callback, ms);
};
})();

$('input').keyup(function() {
delay(function(){
alert($(this).val());
}, 1000 );
});
});

最佳答案

您应该保存对此的引用:

$('input').keyup(function() {
var $this = $(this);
delay(function(){
alert($this.val());
}, 1000 );
});

另一个选项是将 this 重新绑定(bind)到函数:

  $('input').keyup(function() {
delay(function(){
alert($(this).val());
}.bind(this), 1000 );
});

关于javascript - jQuery $(this) 内部函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11969104/

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