我想在纽伦加一字,但希望每当用户点击纽顿时就采取某些行动,但只是在用户点击后5次之后,才进行更新。 通常看来,神学直接适用于听众。 在此,我要求每点子被点击时采取一些行动,然后在一段合理的等候期之后更新。
I am not sure how to use the function in this case...
参考:。
$( #myButton ).click(function() {
// do a date calculation
// show user changes to screen
// wait until user has has stopped clicking the
// button for 5 seconds, then update file with "process" function.
});
function process(){
// update database table
}
debounce syntax
$( input ).bind( keyup blur , $.debounce(process, 5000));