jQuery 超时:e.nodeName 未定义
<script type="text/javascript">
var delay = (function() {
var timer = 0;
return function(callback, ms) {
clearTimeout(timer);
timer = setTimeout(callback, ms);
};
})();
$(function() {
$('#activity').change(function() {
$(this).val() == "SID" ? $('.SIDContainer').show() : $('.SIDContainer').hide();
});
$('.SID').keyup(function() {
delay(function() {
$.ajax({
url: '../SentinelOperationsUI/GenericHandler.ashx',
data: { 'SID': $(this).val() },
dataType: 'json',
success: function(data) {
if (data.SID != null) {
$('.SIDResult').text('Match: ' + ' SID: ' + data.SID);
console.log(data);
}
}
});
}, 500);
});
});
该代码无需延迟功能即可工作。但我想要在这里延迟,因为否则可能会针对相同的值发送多个 ajax 请求(如果您输入得足够快)。知道是什么原因造成的吗?对于这个问题还有其他解决方案吗?谢谢
<script type="text/javascript">
var delay = (function() {
var timer = 0;
return function(callback, ms) {
clearTimeout(timer);
timer = setTimeout(callback, ms);
};
})();
$(function() {
$('#activity').change(function() {
$(this).val() == "SID" ? $('.SIDContainer').show() : $('.SIDContainer').hide();
});
$('.SID').keyup(function() {
delay(function() {
$.ajax({
url: '../SentinelOperationsUI/GenericHandler.ashx',
data: { 'SID': $(this).val() },
dataType: 'json',
success: function(data) {
if (data.SID != null) {
$('.SIDResult').text('Match: ' + ' SID: ' + data.SID);
console.log(data);
}
}
});
}, 500);
});
});
The code works without the delay function. But i want a delay here because otherwise multiple ajax request might be sent for the same value (if you type fast enough). Any idea what might be causing this? Any other solutions on this problem maybe? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与其使用延迟,为什么不将 ajax 调用分配给一个变量,然后在每个新的 keyup 事件中检查它是否为 null。类似于:
这将确保每个 keyup 操作都会跨越一个新的 ajax 事件并取消任何先前的事件。
Instead of using the delay, why not assign your ajax call to a variable, then check it for null with each new keyup event. Something like:
This would ensure that every keyup action would span a new ajax event and cancel any previous one.