- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
function go_save(){
console.log('saving...');
}
$('button').on('click', function(){
console.log('clicked');
//the above should be written each time the button is clicked
//the next should be executed only if the last click happens 9 seconds in the past
go_save();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button>CLICK</button>
go_save
是一个 ajax 函数,我想阻止它在用户一次单击按钮多次时执行。
但我不想等待console.log('clicked')
,只想等待go_save()
有什么帮助吗?
最佳答案
您不应该手动执行此操作,我建议您在单击后禁用该按钮,并在 ajax 请求完成后再次启用该按钮。
您可以检查每次单击按钮时的时间差异(以秒为单位)。您可以使用标志变量忽略第一次点击的时间检查:
function go_save(){
console.log('saving...');
time = new Date();
isFirst = false;
}
var time = new Date();
var isFirst = true;
$('button').on('click', function(){
console.log('clicked');
//the above should be written each time the button is clicked
//the next should be executed only if the last click happens 9 seconds in the past
var diff = (new Date().getTime() - time.getTime()) / 1000;
if(isFirst || diff >= 9)
go_save();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button>CLICK</button>
关于javascript - 如何防止过于频繁地执行 ajax 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60900453/
我有一个包含值的字符串数组(duh...)。 有没有一种简单的方法可以获取出现次数最多的条目?有点像 values[37].getMostOften(); 干杯:) 最佳答案 您可以使用GroupBy
我目前正在将一款用 C#(适用于 Windows Phone)开发的游戏移植到 Java (Android)。 我们在 Java 版本中遇到了内存问题,在分析之后,似乎是由于内存中的大量 String
对于播放音频文件的 iPhone 应用程序,我正在开发一个系统来跟踪用户在他们听过的任何一集中的进度(例如,他们听 file1 的前 4:35,然后开始另一个文件,然后返回到文件 1,它从 4:35
如果您按下 UIbutton 显示 UITextView,将请求代码 Ì 再次按下 UIbutton 再次显示 UITextView :/ 最佳答案 .h 文件中只有一个 int 变量,如下所示..
我在 Application_End 上处理的项目中使用临时数据库: protected void Application_End() { if (_db != null) _db.Dispo
我是一名优秀的程序员,十分优秀!