2011-12-06 57 views

回答

4

它可以在香草中实现javascript,setTimeout

setTimeout返回一个ID,你可以用它来clearTimeout如果你不希望它来执行:

$(document).keyPress(function(e) { 

    // do your thing 

    // clear timeout that may have been set during previous key press 
    window.clearTimeout(window.keyTimeout); 

    window.keyTimeout = setTimeout(function() { 
     // do your delete-thing 
    }, 3000); 

}); 
相关问题