Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery でハンドラーを unbind() した場合、「再バインド」すると、最初にバインドされたときと同じように動作しますか?
特定の handler のバインドを解除すると、それにバインドされていたすべてのハンドラー コードが削除されます。
$('#elem').unbind('click') 要素のクリック イベントを削除します $('#elem').unbind() 関連付けられているすべてのイベントを削除します..
を再バインドすると、同じ関数を呼び出すと同じ機能が提供されます.別の関数にバインドすると、明らかに別の出力が得られます..