What is the opposite of evt.preventDefault();
问题 Once I\'ve fired an evt.preventDefault() , how can I resume default actions again? 回答1: As per commented by @Prescott, the opposite of: evt.preventDefault(); Could be: Essentially equating to 'do default' , since we're no longer preventing it. Otherwise I'm inclined to point you to the answers provided by another comments and answers: How to unbind a listener that is calling event.preventDefault() (using jQuery)? How to reenable event.preventDefault? Note that the second one has been accepted