jQuery event binding
Event binding
Simple operation of jquery event:
$().Event type(function Event handling);
$().Event type();
##1. jquery event binding
1.2 Cancel event binding ① $().unbind(); //Cancel all events ② $().unbind(event type); //Cancel events of the specified type ③ $().unbind(event type, processing); //Cancel the specified processing event of the specified type Note: For the ③ type of cancellation of event binding, the event processing must be a named function.php.cn
Event binding is just a form of rich event operations.php.cn